NewRelic provider: How to pass policy_id parameter to NrqlAlertCondition #1872
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: Update project board on issue changes | |
on: | |
issues: | |
types: | |
- opened | |
- edited | |
- closed | |
- reopened | |
- labeled | |
- unlabeled | |
- milestoned | |
- demilestoned | |
workflow_dispatch: | |
inputs: | |
issue: | |
description: "Issue number" | |
required: true | |
type: number | |
jobs: | |
trigger-external-update: | |
if: github.repository == 'hashicorp/terraform-cdk' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Update project board | |
env: | |
GH_TOKEN: ${{ secrets.PROJECT_BOARD_UPDATE_GH_TOKEN }} | |
ISSUE: ${{ inputs.issue || github.event.issue.number }} | |
run: | | |
sleep 5 | |
gh workflow run update-project-board-issue.yml -R hashicorp/update-project-board -f issue=$ISSUE -f repository=terraform-cdk -f project=125 |