Merge pull request #13322 from nashidau/master #3372
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: Charsheets Actions | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
charsheets-actions: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/changed-files@v41 | |
with: | |
since_last_remote_commit: true | |
separator: '::' | |
- name: Run sheet actions | |
uses: nick-invision/private-action-loader@v3 | |
with: | |
pal-repo-name: Roll20/charsheets-actions | |
pal-repo-token: ${{ secrets.REPO_ACCESS_TOKEN }} | |
file-list: ${{ steps.changed-files.outputs.all_modified_files }} | |
separator: '::' | |
credentials: ${{ secrets.SERVICE_ACCOUNT_KEY }} |