-
Notifications
You must be signed in to change notification settings - Fork 316
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: disable refinement workflow for now (#5001)
## Describe your changes This comments out the refinement workflow for now, rather than remove it, since it's a good example for future process work using actions.
- Loading branch information
Showing
1 changed file
with
19 additions
and
19 deletions.
There are no files selected for viewing
38 changes: 19 additions & 19 deletions
38
.github/workflows/new-issues-labeled-needs-refinement.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
# Adds the `needs-refinement` label to newly opened issues. | ||
name: New issues need refinement | ||
on: | ||
issues: | ||
types: | ||
- opened | ||
jobs: | ||
label_issues: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
steps: | ||
- run: gh issue edit "$NUMBER" --add-label "$LABELS" | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GH_REPO: ${{ github.repository }} | ||
NUMBER: ${{ github.event.issue.number }} | ||
# Separate multiple labels with commas if other labels are ever | ||
# needed e.g., `needs-refinement,foo`. | ||
LABELS: needs-refinement | ||
# name: New issues need refinement | ||
# on: | ||
# issues: | ||
# types: | ||
# - opened | ||
# jobs: | ||
# label_issues: | ||
# runs-on: ubuntu-latest | ||
# permissions: | ||
# issues: write | ||
# steps: | ||
# - run: gh issue edit "$NUMBER" --add-label "$LABELS" | ||
# env: | ||
# GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# GH_REPO: ${{ github.repository }} | ||
# NUMBER: ${{ github.event.issue.number }} | ||
# # Separate multiple labels with commas if other labels are ever | ||
# # needed e.g., `needs-refinement,foo`. | ||
# LABELS: needs-refinement |