Merge pull request #13158 from jarbascjunior2/master #408
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sheet HTTP Actions | |
on: | |
push: | |
branches: [ staging, master ] | |
jobs: | |
get-list: | |
runs-on: ubuntu-latest | |
outputs: | |
file-list: ${{ steps.changed-files.outputs.all_modified_files }} | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
with: | |
fetch-depth: 0 | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/changed-files@v39.2.3 | |
with: | |
since_last_remote_commit: true | |
separator: '::' | |
update-sheet-http: | |
runs-on: ubuntu-latest | |
needs: get-list | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- uses: ./.actions/sheet-http | |
with: | |
file-list: ${{ needs.get-list.outputs.file-list }} | |
separator: '::' | |
credentials: ${{ secrets.SERVICE_ACCOUNT_KEY }} | |
env: | |
TAVERN_API_KEY: ${{ secrets.TAVERN_API_KEY }} | |
STAGING_API_KEY: ${{ secrets.STAGING_API_KEY }} | |
PRODUCTION_API_KEY: ${{ secrets.PRODUCTION_API_KEY }} | |