Skip to content

Commit 72654c5

Browse files
authored
ci: start testing NodeJS 22 (#1033)
1 parent 836a8bb commit 72654c5

File tree

4 files changed

+23
-11
lines changed

4 files changed

+23
-11
lines changed

.github/workflows/immediate-response.yml

+14-6
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,27 @@ on:
1111
- opened
1212
jobs:
1313
respond-to-issue:
14-
if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' && github.actor != 'githubactions[bot]' && github.actor != 'octokitbot' }}
14+
if:
15+
${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' &&
16+
github.actor != 'githubactions[bot]' && github.actor != 'octokitbot' }}
1517
runs-on: ubuntu-latest
1618
steps:
1719
- name: Determine issue or PR number
1820
id: extract
19-
run: echo "NUMBER=${{ github.event.issue.number || github.event.pull_request.number }}" >> "$GITHUB_OUTPUT"
21+
run: echo "NUMBER=${{ github.event.issue.number ||
22+
github.event.pull_request.number }}" >> "$GITHUB_OUTPUT"
2023

2124
- name: Respond to issue or PR
2225
uses: peter-evans/create-or-update-comment@v4
2326
with:
2427
issue-number: ${{ steps.extract.outputs.NUMBER }}
2528
body: >
26-
👋 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!
27-
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.
28-
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`.
29-
You & others like you are the reason all of this works! So thank you & happy coding! 🚀
29+
👋 Hi! Thank you for this contribution! Just to let you know, our
30+
GitHub SDK team does a round of issue and PR reviews twice a week,
31+
every Monday and Friday! We have a [process in
32+
place](https://github.com/octokit/.github/blob/main/community/prioritization_response.md#overview)
33+
for prioritizing and responding to your input. Because you are a
34+
part of this community please feel free to comment, add to, or pick
35+
up any issues/PRs that are labeled with `Status: Up for grabs`. You
36+
& others like you are the reason all of this works! So thank you &
37+
happy coding! 🚀

.github/workflows/release.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ name: Release
88
- "*.x"
99
# These are recommended by the semantic-release docs: https://github.com/semantic-release/npm#npm-provenance
1010
permissions:
11-
contents: write # to be able to publish a GitHub release
12-
issues: write # to be able to comment on released issues
13-
pull-requests: write # to be able to comment on released pull requests
14-
id-token: write # to enable use of OIDC for npm provenance
11+
contents: write # to be able to publish a GitHub release
12+
issues: write # to be able to comment on released issues
13+
pull-requests: write # to be able to comment on released pull requests
14+
id-token: write # to enable use of OIDC for npm provenance
1515

1616
jobs:
1717
release:

.github/workflows/test.yml

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
node_version:
1616
- 18
1717
- 20
18+
- 22
1819
name: Node ${{ matrix.node_version }}
1920
steps:
2021
- uses: actions/checkout@v4

.github/workflows/update.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@ jobs:
2222
GITHUB_TOKEN: ${{ secrets.OCTOKITBOT_PAT }}
2323
with:
2424
title: 🚧 🤖📯 Webhooks changed
25-
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.
25+
body:
26+
An update to the OpenAPI spec has been detected, and required updates to
27+
your code. Please review the changes and merge this PR if everything
28+
looks good.
2629
branch: ${{ github.ref }}
2730
author: Octokit Bot <[email protected]>
2831
commit-message: "WIP: Webhooks changed - please review"

0 commit comments

Comments
 (0)