Expand Zarf variables in onDeploy action wait blocks / load variables during component removes #741
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: Project automations | |
on: | |
issues: | |
types: | |
- opened | |
permissions: | |
contents: read | |
jobs: | |
add-to-project: | |
name: Add issue to project | |
runs-on: ubuntu-latest | |
if: github.event_name == 'issues' && github.event.action == 'opened' | |
steps: | |
- name: Move issue to Zarf Project | |
uses: actions/add-to-project@31b3f3ccdc584546fc445612dec3f38ff5edb41c # v0.5.0 | |
with: | |
project-url: https://github.com/orgs/defenseunicorns/projects/1 | |
github-token: ${{ secrets. ZARF_ORG_PROJECT_TOKEN }} |