Skip to content
This repository has been archived by the owner on Aug 19, 2024. It is now read-only.

chore: label every new issue with jira label #181

Merged
merged 1 commit into from
Jan 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,13 @@ jobs:
with:
project_id: 2
secrets: inherit

add-jira-label:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- run: |
gh issue --repo ${{github.repository}} edit ${{github.event.issue.number}} --add-label "jira"
env:
GH_TOKEN: ${{ github.token }}