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: actions/create-github-app-token
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.5
Choose a base ref
...
head repository: actions/create-github-app-token
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.1.0
Choose a head ref
  • 4 commits
  • 5 files changed
  • 2 contributors

Commits on Aug 22, 2023

  1. ci(dependabot config): initial version (#15)

    Configures Dependabot version updates, which enables Dependabot to open
    pull requests automatically to keep dependencies up-to-date when new
    versions are available.
    parkerbxyz authored Aug 22, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    e5568a0 View commit details
  2. Copy the full SHA
    7bbad93 View commit details
  3. Copy the full SHA
    9cf7227 View commit details
  4. feat: use node20 as runner (#23)

    should be available now as per
    actions/runner#2619 (comment)
    gr2m authored Aug 22, 2023
    Copy the full SHA
    803e078 View commit details
Showing with 26 additions and 11 deletions.
  1. +1 −1 .github/CODEOWNERS
  2. +10 −0 .github/dependabot.yml
  3. +1 −6 .github/workflows/release.yml
  4. +1 −1 action.yml
  5. +13 −3 package.json
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @gr2m @parkerbxyz @actions/github-app-token-maintainers
* @gr2m @parkerbxyz @actions/create-github-app-token-maintainers
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "monthly"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
7 changes: 1 addition & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -26,12 +26,7 @@ jobs:
with:
app_id: ${{ vars.RELEASER_APP_ID }}
private_key: ${{ secrets.RELEASER_APP_PRIVATE_KEY }}

- id: commit
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "build: update dist files"
- run: npm i semantic-release-plugin-github-breaking-version-tag
- run: npm install --no-save @semantic-release/git semantic-release-plugin-github-breaking-version-tag
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
@@ -15,6 +15,6 @@ outputs:
token:
description: "GitHub installation access token"
runs:
using: "node16"
using: "node20"
main: "dist/main.cjs"
post: "dist/post.cjs"
16 changes: 13 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "app-token-action",
"name": "create-github-app-token",
"private": true,
"type": "module",
"version": "1.0.0",
"version": "1.0.5",
"description": "GitHub Action for creating a GitHub App Installation Access Token",
"scripts": {
"build": "esbuild main.js post.js --bundle --outdir=dist --out-extension:.js=.cjs --platform=node --target=node16.16",
@@ -27,7 +27,17 @@
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"semantic-release-plugin-github-breaking-version-tag"
"semantic-release-plugin-github-breaking-version-tag",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"dist/*"
],
"message": "build(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}