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: nodenv/node-build
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: nodenv/node-build
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: bot-sign
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 4 commits
  • 1 file changed
  • 1 contributor

Commits on Sep 1, 2020

  1. Verified

    This commit was signed with the committer’s verified signature.
    jasonkarns Jason Karns
    Copy the full SHA
    a3b7866 View commit details
  2. testing

    jasonkarns committed Sep 1, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    jasonkarns Jason Karns
    Copy the full SHA
    04cd6ae View commit details
  3. initial commit

    jasonkarns committed Sep 1, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    jasonkarns Jason Karns
    Copy the full SHA
    ac33c44 View commit details
  4. on-push

    jasonkarns committed Sep 1, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    jasonkarns Jason Karns
    Copy the full SHA
    a642be5 View commit details
Showing with 30 additions and 0 deletions.
  1. +30 −0 .github/workflows/sign.yml
30 changes: 30 additions & 0 deletions .github/workflows/sign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Test Signing
on:
push:

jobs:
bump:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: bot-sign
fetch-depth: 0
token: ${{ secrets.BOT_TOKEN }}

- uses: crazy-max/ghaction-import-gpg@v2
with:
git_user_signingkey: true
git_commit_gpgsign: true
git_tag_gpgsign: true
env:
GPG_PRIVATE_KEY: ${{ secrets.BOT_GPG_KEY }}

- run: git commit --allow-empty -m testing
env:
GIT_AUTHOR_NAME: 'nodenv bot'
GIT_AUTHOR_EMAIL: 'nodenv-bot@users.noreply.github.com'
GIT_COMMITTER_NAME: 'nodenv bot'
GIT_COMMITTER_EMAIL: 'nodenv-bot@users.noreply.github.com'

- run: git push