Merge pull request #13509 from Villain1nGlasses/experimental #757
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/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/[email protected] | |
with: | |
since_last_remote_commit: true | |
separator: '::' | |
update-sheet-http: | |
runs-on: ubuntu-latest | |
needs: get-list | |
steps: | |
- uses: actions/[email protected] | |
- 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 }} | |