Skip to content

Commit

Permalink
Add check label action (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
adcreare authored Jul 10, 2023
1 parent 38e70e6 commit b43d69d
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 2 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/check-label.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Check Label

on:
pull_request:
branches:
- 'main'

jobs:
publishBeta:
runs-on: ubuntu-latest
name: Check label
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
- name: Check Label
uses: checkdigit/github-actions/check-label@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@checkdigit/hash",
"version": "2.0.1",
"version": "2.0.2",
"description": "Hash is a small function for Check Digit services to create a uuid derived from a hash generated from a given value.",
"exports": {
".": {
Expand Down

0 comments on commit b43d69d

Please sign in to comment.