From e675e1b4825a0dc696715eed3c926fc860f2faaa Mon Sep 17 00:00:00 2001 From: nicolethoen Date: Tue, 28 Apr 2026 10:25:55 -0400 Subject: [PATCH] chore: add PF Team label workflow Made-with: Cursor --- .github/workflows/add-to-project.yml | 16 ---------------- .github/workflows/label-pf-team-issues.yml | 9 +++++++++ 2 files changed, 9 insertions(+), 16 deletions(-) delete mode 100644 .github/workflows/add-to-project.yml create mode 100644 .github/workflows/label-pf-team-issues.yml diff --git a/.github/workflows/add-to-project.yml b/.github/workflows/add-to-project.yml deleted file mode 100644 index 0c68c10..0000000 --- a/.github/workflows/add-to-project.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: Add new issues to PatternFly Extensions project - -on: - issues: - types: - - opened - -jobs: - add-to-project: - name: Add issue to project - runs-on: ubuntu-latest - steps: - - uses: actions/add-to-project@v1.0.2 - with: - project-url: https://github.com/orgs/patternfly/projects/7 - github-token: ${{ secrets.GH_PROJECTS }} diff --git a/.github/workflows/label-pf-team-issues.yml b/.github/workflows/label-pf-team-issues.yml new file mode 100644 index 0000000..9019ee2 --- /dev/null +++ b/.github/workflows/label-pf-team-issues.yml @@ -0,0 +1,9 @@ +name: Label PF Team issues +on: + issues: + types: + - opened +jobs: + label: + uses: patternfly/.github/.github/workflows/add-pf-team-label-workflow.yml@main + secrets: inherit