Skip to content

Commit

Permalink
Update Issue/PR response workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
0x5bfa committed Sep 28, 2024
1 parent 509e33a commit 5e91bb7
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/auto-response.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# This comes from https://github.com/octokit/.github/tree/main/.github/templates
# Please edit the workflow in there too when you make changes to this workflow.

name: Issue/PR response

permissions:
Expand All @@ -6,22 +9,22 @@ permissions:

on:
issues:
types: [reopened, opened]
types: [opened]
pull_request_target:
types: [reopened, opened]
types: [opened]

jobs:

respond-to-issue:
if: ${{ github.event.action == 'opened' && github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' && github.actor != 'githubactions[bot]' && github.actor != 'octokitbot' }}
respond:
if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' && github.actor != 'githubactions[bot]' && github.actor != 'octokitbot' }}
runs-on: ubuntu-latest

steps:
- name: Determine issue or PR number
id: extract
run: echo "NUMBER=${{ github.event.issue.number || github.event.pull_request.number }}" >> "$GITHUB_OUTPUT"

- name: Respond to issue or PR
- name: Respond to the issue or PR
uses: peter-evans/create-or-update-comment@v4
with:
issue-number: ${{ steps.extract.outputs.NUMBER }}
Expand All @@ -31,11 +34,8 @@ jobs:
Because you are a part of this community please feel free to comment, add to, or pick up any issues/PRs that are labeled with `Status: Up for grabs`.
You & others like you are the reason all of this works! So thank you & happy coding! 🚀
add-to-project:
runs-on: ubuntu-latest

steps:
- uses: actions/[email protected]
- name: Add issue to project
uses: actions/add-to-project@v1
with:
project-url: https://github.com/orgs/octokit/projects/10
github-token: ${{ secrets.OCTOKITBOT_PROJECT_ACTION_TOKEN }}
Expand Down

0 comments on commit 5e91bb7

Please sign in to comment.