Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: octokit/webhooks.js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v9.26.0
Choose a base ref
...
head repository: octokit/webhooks.js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v9.26.1
Choose a head ref
  • 6 commits
  • 5 files changed
  • 1 contributor

Commits on Nov 14, 2023

  1. fix: handles verify error (#917)

    handles verify error
    nickfloyd authored Nov 14, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    0504ad8 View commit details
  2. Update release.yml

    nickfloyd authored Nov 14, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    6a9749e View commit details
  3. Update package.json

    nickfloyd authored Nov 14, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    a988453 View commit details

Commits on Nov 15, 2023

  1. Copy the full SHA
    2750d5c View commit details
  2. Copy the full SHA
    a608374 View commit details
  3. updates token env name

    nickfloyd committed Nov 15, 2023
    Copy the full SHA
    a338537 View commit details
Showing with 7,058 additions and 5,653 deletions.
  1. +6 −6 .github/workflows/release.yml
  2. +6,994 −5,645 package-lock.json
  3. +10 −1 package.json
  4. +1 −1 src/verify-and-receive.ts
  5. +47 −0 test/integration/node-middleware.test.ts
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -2,23 +2,23 @@ name: Release
on:
push:
branches:
- master
- main
- next
- beta
- "v*.x" # maintenance release branches, e.g. v1.x
- "*.x"
jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
cache: npm
- run: npm ci
- run: npm run build
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.OCTOKITBOT_NPM_TOKEN }}
Loading