Skip to content

Commit

Permalink
ci: start testing NodeJS 22 (#1033)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy1339 committed Jul 11, 2024
1 parent 836a8bb commit 72654c5
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 11 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/immediate-response.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,27 @@ on:
- opened
jobs:
respond-to-issue:
if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' && github.actor != 'githubactions[bot]' && github.actor != 'octokitbot' }}
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"
run: echo "NUMBER=${{ github.event.issue.number ||
github.event.pull_request.number }}" >> "$GITHUB_OUTPUT"

- name: Respond to issue or PR
uses: peter-evans/create-or-update-comment@v4
with:
issue-number: ${{ steps.extract.outputs.NUMBER }}
body: >
👋 Hi! Thank you for this contribution! Just to let you know, our GitHub SDK team does a round of issue and PR reviews twice a week, every Monday and Friday!
We have a [process in place](https://github.com/octokit/.github/blob/main/community/prioritization_response.md#overview) for prioritizing and responding to your input.
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! 🚀
👋 Hi! Thank you for this contribution! Just to let you know, our
GitHub SDK team does a round of issue and PR reviews twice a week,
every Monday and Friday! We have a [process in
place](https://github.com/octokit/.github/blob/main/community/prioritization_response.md#overview)
for prioritizing and responding to your input. 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! 🚀
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ name: Release
- "*.x"
# These are recommended by the semantic-release docs: https://github.com/semantic-release/npm#npm-provenance
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
id-token: write # to enable use of OIDC for npm provenance
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
id-token: write # to enable use of OIDC for npm provenance

jobs:
release:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
node_version:
- 18
- 20
- 22
name: Node ${{ matrix.node_version }}
steps:
- uses: actions/checkout@v4
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ jobs:
GITHUB_TOKEN: ${{ secrets.OCTOKITBOT_PAT }}
with:
title: 🚧 🤖📯 Webhooks changed
body: An update to the OpenAPI spec has been detected, and required updates to your code. Please review the changes and merge this PR if everything looks good.
body:
An update to the OpenAPI spec has been detected, and required updates to
your code. Please review the changes and merge this PR if everything
looks good.
branch: ${{ github.ref }}
author: Octokit Bot <octokitbot@martynus.net>
commit-message: "WIP: Webhooks changed - please review"

0 comments on commit 72654c5

Please sign in to comment.