This repository has been archived by the owner on Nov 1, 2023. It is now read-only.
ci: trigger test from other workflow so secrets are available #1
Workflow file for this run
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
# This workflows sole responsibility is to trigger other workflows with permissions | |
name: PrCheck | |
concurrency: | |
group: ${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
trigger: | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "Triggering test with permissions" |