mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 11:42:29 +00:00
28 lines
757 B
YAML
28 lines
757 B
YAML
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@v46.0.1
|
|
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 }}
|