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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v7.4.0
Choose a base ref
...
head repository: octokit/webhooks
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v7.5.0
Choose a head ref
  • 9 commits
  • 8 files changed
  • 3 contributors

Commits on Mar 12, 2024

  1. ci(action): update actions/checkout digest to 9bb5618 (#906)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 12, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    AtofStryker Bill Glesias
    Copy the full SHA
    b97e063 View commit details
  2. ci(action): update actions/checkout digest to b4ffde6

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 12, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    AtofStryker Bill Glesias
    Copy the full SHA
    8eb536f View commit details

Commits on Mar 13, 2024

  1. build(deps): lock file maintenance (#908)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 13, 2024
    Copy the full SHA
    3d77bef View commit details

Commits on Mar 19, 2024

  1. build(deps): lock file maintenance (#909)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 19, 2024
    Copy the full SHA
    b3b0467 View commit details
  2. ci(action): update actions/add-to-project action to v0.6.1 (#910)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 19, 2024
    Copy the full SHA
    d0eac4f View commit details

Commits on Mar 26, 2024

  1. build(deps): lock file maintenance (#912)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 26, 2024
    Copy the full SHA
    28abb9a View commit details

Commits on Mar 27, 2024

  1. ci(action): update actions/add-to-project action to v1

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 27, 2024
    Copy the full SHA
    8cbbc6b View commit details

Commits on Apr 2, 2024

  1. build(deps): lock file maintenance (#915)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Apr 2, 2024
    Copy the full SHA
    897531e View commit details

Commits on Apr 3, 2024

  1. feat(security): Add provenance (#916)

    * Enable provenance in package.json
    
    * Add necessary permissions to the release workflow
    
    * Adapt PR
    
    ---------
    
    Co-authored-by: wolfy1339 <webmaster@wolfy1339.com>
    AaronDewes and wolfy1339 authored Apr 3, 2024
    Copy the full SHA
    b28ee22 View commit details
2 changes: 1 addition & 1 deletion .github/workflows/add_to_octokit_project.yml
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/add-to-project@v0.6.0
- uses: actions/add-to-project@v1.0.0
with:
project-url: https://github.com/orgs/octokit/projects/10
github-token: ${{ secrets.OCTOKITBOT_PROJECT_ACTION_TOKEN }}
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -4,6 +4,13 @@
- main
- beta
name: Release
# 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

jobs:
build:
name: release
Loading