Create command-r.yaml resolves #81 #186
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: Concatenate Files | |
on: | |
push: | |
paths: | |
- 'projects/**' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
create-table: | |
runs-on: ubuntu-latest | |
permissions: | |
# Give the default GITHUB_TOKEN write permission to commit and push the | |
# added or changed files to the repository. | |
contents: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Create table | |
uses: ./custom-action | |
# commit changed html files | |
- name: Commit | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
# Trigger deployment workflow on completion of the build workflow | |
deploy: | |
needs: create-table | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- name: Trigger Deployment | |
uses: actions/github-script@v6 | |
with: | |
script: | | |
github.rest.actions.createWorkflowDispatch({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
workflow_id: 'static.yml', | |
ref: 'main', | |
}) |