Skip to content

Commit

Permalink
ci: disable refinement workflow for now
Browse files Browse the repository at this point in the history
  • Loading branch information
erwanor committed Jan 22, 2025
1 parent d7e096f commit 7e47132
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions .github/workflows/new-issues-labeled-needs-refinement.yml
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

0 comments on commit 7e47132

Please sign in to comment.