Create close-milestoned-issues.yml #1
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: Close milestoned issues when cherry-picked PR is merged | ||
on: | ||
pull_request_target: | ||
types: [closed] | ||
jobs: | ||
close-milestoned-issues: | ||
steps: | ||
Check failure on line 9 in .github/workflows/close-milestoned-issues.yml GitHub Actions / Close milestoned issues when cherry-picked PR is mergedInvalid workflow file
|
||
- name: Harden Runner | ||
uses: step-security/harden-runner@6b3083af2869dc3314a0257a42f4af696cc79ba3 | ||
with: | ||
egress-policy: audit | ||
- name: Logging github event | ||
run: echo '${{ toJSON(github.event) }}' | jq | ||