Merge pull request #12254 from Roll20/l10n_master #357
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/[email protected] | |
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 }} |