[ig/securepay] Web Payment Security Interest Group Charter #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: Create Cross-Repo Issue on Horizontal Label | |
on: | |
issues: | |
types: [labeled] | |
jobs: | |
create-issue: | |
if: github.event.label.name == 'Horizontal review requested' | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write # Still needed to read source issue | |
steps: | |
- name: Create new issue in target repository | |
run: | | |
gh issue create \ | |
--repo "w3cping/privacy-request" \ | |
--title " #${{ github.event.issue.title }}" \ | |
--body "This issue was created because the 'horizontal review requested' label was added to\n\n ${{ github.event.issue.html_url }}" \ | |
--label "charter" | |
env: | |
GITHUB_TOKEN: ${{ secrets.W3CBOT_TOKEN }} |