Add support for projects and workspace_exclusions to tfe_policy_set
#1865
This file contains hidden or 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: Jira Issue Sync | |
| on: | |
| issues: | |
| types: [opened, closed, deleted, reopened] | |
| issue_comment: | |
| types: [created] | |
| jobs: | |
| call-workflow: | |
| uses: ./.github/workflows/jira-issue-sync.yml | |
| with: | |
| project: TF | |
| issue-extra-fields: | | |
| { "customfield_10091": ["TF-Core-Cloud"], | |
| "customfield_10008": "${{ contains(github.event.issue.labels.*.name, 'bug') && 'TF-7331' || 'TF-3484' }}" | |
| } | |
| secrets: inherit |