Reusable workflows and actions
This fork (llmzy/github-workflows) adds several key features and modifications to the original salesforcecli/github-workflows project:
- Added support for both npm and yarn package managers
- New
package-managerinput parameter (default: "yarn") to specify which package manager to use - Automatic detection and use of the appropriate package manager commands
- Added support for signed Git commits in workflows
- Automatic configuration of Git signing with GPG keys
- Email verification to ensure GPG key matches GitHub token identity
- Secure handling of private keys through GitHub Secrets
-
Generate a GPG key:
gpg --full-generate-key
- Choose RSA and RSA (default)
- Choose 4096 bits
- Choose how long the key should be valid
- Setting an expiration date is a security best practice
- You can extend the key's validity before it expires using
gpg --edit-key YOUR_EMAIL - If the key expires, you'll need to generate a new one and update the GitHub secrets
- Enter your name and email (should match your GitHub account email)
- Do not supply a passphrase as it would be necessary to store both in GitHub secrets. We will delete the local copy in step 5.
-
Export your private key:
# First, list your keys to get the key ID gpg --list-secret-keys --keyid-format=long YOUR_EMAIL # Then export the specific key using its ID gpg --export-secret-keys --armor KEY_ID > private.asc
- Replace
YOUR_EMAILwith the email you used when creating the key - Replace
KEY_IDwith the key ID from the list command (it will look likeABCD1234EFGH5678) - The output will be in ASCII-armored format
- Replace
-
Export your public key and add it to GitHub:
# Export the public key using the same key ID gpg --export --armor KEY_ID > public.asc
- Use the same
KEY_IDfrom step 2 - Copy the contents of public.asc
- On macOS, you can use:
cat public.asc | pbcopy - Otherwise, open the file and copy its contents
- On macOS, you can use:
- Go to GitHub Settings > SSH and GPG keys > New GPG key
- Paste the public key content
- Give it a descriptive title (e.g., "CI Workflow Signing Key")
- Click "Add GPG key"
- Use the same
-
Add the secrets to your GitHub repository or organization:
- Go to your repository's Settings > Secrets and variables > Actions
- Add the following secrets:
LLMZY_CI_PRIVATE_KEY: The contents of your private.asc file- On macOS, you can use:
cat private.asc | pbcopy - Otherwise, open the file and copy its contents
- On macOS, you can use:
SVC_CLI_BOT_GITHUB_TOKEN: A GitHub PAT with repo access (if not already set)
-
Clean up sensitive files and clipboard:
rm private.asc public.asc echo | pbcopy
- This removes the local copies of your keys
- The private key is now only stored securely in GitHub Secrets
-
The workflows will automatically:
- Configure Git with your signing key
- Verify that the GPG key email matches your GitHub token identity
- Sign all commits made by the workflows
- Clean up the signing configuration after the workflow completes
- Added support for publishing to GitHub Packages Registry
- New
publishToGithubPackagesinput parameter (default: false) - New
scopeinput parameter for package scoping (required when publishing to GitHub Packages) - Automatic configuration of npm/yarn for GitHub Packages authentication
- Proper handling of GitHub Packages permissions and authentication tokens
- Added date-based changelog filtering with the new
first-release-dateparameter - Automatic counting of releases since a specified date for cleaner changelogs
- Smart fallback to full history if no releases exist since the cutoff date
- Compatible with both current and legacy GitHub release workflows
- Enhanced prerelease handling with better validation
- New validation to prevent prerelease creation on main branch
- Improved prerelease tag management
- Updated action references to use the fork's repository
- Maintained compatibility with original workflow structure while adding new features
If you use an on: workflow_run: trigger in your call chain the
create-github-release.yml will not automatically know which branch you are
releasing from because this context gets lost (github.ref_name will be set
to 'main'). To work around this, extract the branch name from
github.event.workflow_run.head_branch and pass it to the release or publish
jobs via the git_ref_name parameter:
on:
workflow_run:
workflows: ['Build']
types:
- completed
jobs:
extract-context:
runs-on: ubuntu-latest
outputs:
branch: ${{ steps.extract.outputs.branch }}
steps:
- name: Extract branch name
id: extract
run: echo "branch=${{ github.event.workflow_run.head_branch || github.ref_name }}" >> $GITHUB_OUTPUT
release:
needs: extract-context
runs-on: ubuntu-latest
uses: llmzy/github-workflows/.github/workflows/create-github-release.yml@main
secrets: inherit
with:
generate-readme: true
package-manager: npm
git_ref_name: ${{ needs.extract-context.outputs.branch }}This same approach works for npmPublish.yml.
Important
Many of these workflows require a Personal Access Token to function.
- Create a new PAT with Repo access
- It is recommended that this is a service account user
- Note: This user/bot will need to have access to push to your repo's default branch. This can be configured in the branch protection rules.
- Add the PAT as an Actions Organization secret
- Set the
NametoSVC_CLI_BOT_GITHUB_TOKEN - Paste in your new PAT as the
Value - Set
Repository Accessto 'Selected Repositories' - Click the gear icon to select repos that need access to the PAT
- This can be edited later
- Click
Add Secret
- Set the
github is the source of truth for code AND releases. Get the version/tag/release right on github, then publish to npm based on that.
- work on a feature branch, commiting with conventional-commits
- merge to main
- A push to main produces (if your commits have
fix:orfeat:) a bumped package.json and a tagged github release viagithubRelease - A release cause
npmPublishto run.
Just need to publish to npm? You could use any public action to do step 4.
Use this repo's npmPublish if you need either
- codesigning for Salesforce CLIs
- integration with CTC or if you own other repos that need those features and just want consistency.
creates a github release based on conventional commit prefixes. Using commits like
fix: etc(patch version) andfeat: wow(minor version). A commit whose body (not the title) containsBREAKING CHANGES:will cause the action to update the packageVersion to the next major version, produce a changelog, tag and release.
name: create-github-release
on:
push:
branches: [main]
jobs:
release:
uses: llmzy/github-workflows/.github/workflows/create-github-release.yml@main
secrets: inherit
with:
# Optional: Path to an existing changelog file to prepend
# If specified, only one new changelog entry will be prepended to this file
# input-file: CHANGELOG.md
# Optional: Alternative git ref name to use instead of github.ref_name
# Useful for workflow_run events where the original ref name might be lost
# git_ref_name: "main"
# you can also pass in values for the secrets
# secrets:
# SVC_CLI_BOT_GITHUB_TOKEN: gh_pat00000000You can now control how far back your changelog history goes by specifying a cutoff date. By default, all releases are kept in the changelog, but you can limit it to releases since a specific date:
jobs:
release:
uses: llmzy/github-workflows/.github/workflows/create-github-release.yml@main
secrets: inherit
with:
# Only include releases since January 1, 2023 in the changelog
first-release-date: "2023-01-01" This feature automatically counts the number of semver-compliant releases (git tags) since the specified date and passes the appropriate release-count to the changelog generator. This approach provides a cleaner way to maintain changelog history compared to manually setting a fixed release count.
This will verify that the version has not already been published. There are additional params for signing your plugin and integrating with Change Traffic Control (release moratoriums) that you probably only care about if your work for Salesforce.
example usage
on:
release:
# the result of the githubRelease workflow
types: [published]
jobs:
my-publish:
uses: llmzy/github-workflows/.github/workflows/npmPublish.yml
with:
tag: latest
githubTag: ${{ github.event.release.tag_name }}
# Optional: Alternative git ref name to use instead of github.ref_name
# Useful for workflow_run events where the original ref name might be lost
# git_ref_name: "main"
secrets: inherit
# you can also pass in values for the secrets
# secrets:
# NPM_TOKEN: ^&*$When using workflows that install packages from GitHub Packages (like @llmzy/release-management), you need to configure the registry and scope. Here are examples for all workflows:
jobs:
my-publish:
uses: llmzy/github-workflows/.github/workflows/npmPublish.yml
with:
tag: latest
githubTag: ${{ github.event.release.tag_name }}
publishToGithubPackages: true
scope: "@myorg"
secrets: inherit
# When publishing to GitHub Packages, you need the SVC_CLI_BOT_GITHUB_TOKEN secret
# secrets:
# SVC_CLI_BOT_GITHUB_TOKEN: ${{ secrets.SVC_CLI_BOT_GITHUB_TOKEN }}Plugins teams can be signed automatically with sign:true if the repo is in llmzy or llmzy-skills gitub organization.
You'll need the CLI team to enable your repo for signing. Open a GitHub issue and tag @jpshack-at-palomar.
on:
release:
# the result of the githubRelease workflow
types: [published]
jobs:
my-publish:
uses: llmzy/github-workflows/.github/workflows/npmPublish.yml
with:
sign: true
tag: latest
githubTag: ${{ github.event.release.tag_name }}
secrets: inheritmain will release to latest. Other branches can create github prereleases and publish to other npm dist tags.
You can create a prerelease one of two ways:
- Create a branch with the
prerelease/**prefix. Exampleprerelease/my-fix- Once a PR is opened, every commit pushed to this branch will create a prerelease
- The default prerelease tag will be
dev. If another tag is desired, manually set it in yourpackage.json. Example:1.2.3-beta.0
- Manually run the
create-github-releaseworkflow in the Actions tab- Click
Run workflow- Select the branch you want to create a prerelease from
- Enter the desired prerelease tag:
dev,beta, etc
- Click
Note
Since conventional commits are used, there is no need to manually remove the prerelease tag from your package.json. Once the PR is merged into main, conventional commits will bump the version as expected (patch for fix:, minor for feat:, etc)
Setup:
- Configure the branch rules for wherever you want to release from
- Modify your release and publish workflows like the following
name: create-github-release
on:
push:
branches:
- main
# point at specific branches, or a naming convention via wildcard
- prerelease/**
tags-ignore:
- "*"
workflow_dispatch:
inputs:
prerelease:
type: string
description: "Name to use for the prerelease: beta, dev, etc. NOTE: If this is already set in the package.json, it does not need to be passed in here."
jobs:
release:
uses: llmzy/github-workflows/.github/workflows/create-github-release.yml@main
secrets: inherit
with:
prerelease: ${{ inputs.prerelease }}
# If this is a push event, we want to skip the release if there are no semantic commits
# However, if this is a manual release (workflow_dispatch), then we want to disable skip-on-empty
# This helps recover from forgetting to add semantic commits ('fix:', 'feat:', etc.)
skip-on-empty: ${{ github.event_name == 'push' }}name: publish
on:
release:
# both release and prereleases
types: [published]
# support manual release in case something goes wrong and needs to be repeated or tested
workflow_dispatch:
inputs:
tag:
description: github tag that needs to publish
type: string
required: true
jobs:
# parses the package.json version and detects prerelease tag (ex: beta from 4.4.4-beta.0)
getDistTag:
outputs:
tag: ${{ steps.distTag.outputs.tag }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.release.tag_name || inputs.tag }}
- uses: llmzy/github-workflows/.github/actions/getPreReleaseTag@main
id: distTag
npm:
uses: llmzy/github-workflows/.github/workflows/npmPublish.yml@main
needs: [getDistTag]
with:
tag: ${{ needs.getDistTag.outputs.tag || 'latest' }}
githubTag: ${{ github.event.release.tag_name || inputs.tag }}
secrets: inheritIn this example
mainpublishes to npm on a 1.x.x version and useslatest.some-other-branchpublishes version 2.x.x and uses thev2dist tag
name: version, tag and github release
on:
push:
# add the other branch so that it causes github releases just like main does
branches: [main, some-other-branch]
jobs:
release:
uses: llmzy/github-workflows/.github/workflows/githubRelease.yml@main
secrets: inheriton:
release:
# the result of the githubRelease workflow
types: [published]
jobs:
my-publish:
uses: llmzy/github-workflows/.github/workflows/npmPublish.yml
with:
# ternary-ish https://github.com/actions/runner/issues/409#issuecomment-752775072
# if the version is 2.x we release it on the `v2` dist tag
tag: ${{ startsWith( github.event.release.tag_name || inputs.tag, '1.') && 'latest' || 'v2'}}
githubTag: ${{ github.event.release.tag_name }}
secrets: inheritWrite unit tests to tests units of code (a function/method).
Write not-unit-tests to tests larger parts of code (a command) against real environments/APIs.
Run the UT first (faster, less expensive for infrastructure/limits).
name: tests
on:
push:
branches-ignore: [main]
workflow_dispatch:
jobs:
unit-tests:
uses: llmzy/github-workflows/.github/workflows/unitTest.yml@main
nuts:
needs: unit-tests
uses: llmzy/github-workflows/.github/workflows/nut.yml@main
secrets: inherit
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
fail-fast: false
with:
os: ${{ matrix.os }}# conditional nuts based on commit message includes a certain string
sandbox-nuts:
needs: [nuts, unit-tests]
if: contains(github.event.push.head_commit.message,'[sb-nuts]')
uses: llmzy/github-workflows/.github/workflows/nut.yml@main
secrets: inherit
with:
command: test:nuts:sandbox
os: ubuntu-latestScenario
- you have NUTs on a plugin that uses a library
- you want to check changes to the library against those NUTs
see https://github.com/forcedotcom/source-deploy-retrieve/blob/> e09d635a7b852196701e71a4b2fba401277da313/.github/workflows/test.yml#L25 for an example
This example calls the automerge job. It'll merge PRs from dependabot that are
- up to date with main
- mergeable (per github)
- all checks have completed and none failed (skipped may not have run)
name: automerge
on:
workflow_dispatch:
schedule:
- cron: "56 2,5,8,11 * * *"
jobs:
automerge:
uses: llmzy/github-workflows/.github/workflows/automerge.yml@main
with:
registryUrl: 'https://npm.pkg.github.com'
scope: '@llmzy'
# secrets are needed
secrets: inheritneed squash?
automerge:
with:
mergeMethod: squashrequires npm to exist. Use in a workflow that has already done that
given an npmTag (ex:
7.100.0orlatest) returns the numeric version (foo=>7.100.0) plus > the xz linux tarball url and the short (7 char) sha.Intended for releasing CLIs, not for general use on npm packages.
# inside steps
- uses: llmzy/github-workflows/.github/actions/versionInfo@main
id: version-info
with:
version: ${{ inputs.version }}
npmPackage: sfdx-cli
- run: echo "version is ${{ steps.version-info.outputs.version }}
- run: echo "sha is ${{ steps.version-info.outputs.sha }}
- run: echo "url is ${{ steps.version-info.outputs.url }}Checks that PRs have a link to a github issue OR a GUS WI in the form of
@W-12456789@(the@are to be compatible with git2gus)
name: pr-validation
on:
pull_request:
types: [opened, reopened, edited]
# only applies to PRs that want to merge to main
branches: [main]
jobs:
pr-validation:
uses: llmzy/github-workflows/.github/workflows/validatePR.yml@mainMainly used to notify Slack when Pull Requests are opened.
For more info see .github/actions/prNotification/README.md
name: Slack Pull Request Notification
on:
pull_request:
types: [opened, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Notify Slack on PR open
env:
WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
PULL_REQUEST_AUTHOR_ICON_URL: ${{ github.event.pull_request.user.avatar_url }}
PULL_REQUEST_AUTHOR_NAME: ${{ github.event.pull_request.user.login }}
PULL_REQUEST_AUTHOR_PROFILE_URL: ${{ github.event.pull_request.user.html_url }}
PULL_REQUEST_BASE_BRANCH_NAME: ${{ github.event.pull_request.base.ref }}
PULL_REQUEST_COMPARE_BRANCH_NAME: ${{ github.event.pull_request.head.ref }}
PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }}
PULL_REQUEST_REPO: ${{ github.event.pull_request.head.repo.name }}
PULL_REQUEST_TITLE: ${{ github.event.pull_request.title }}
PULL_REQUEST_URL: ${{ github.event.pull_request.html_url }}
uses: llmzy/github-workflows/.github/actions/prNotification@main