Skip to content

Commit

Permalink
build: add auto-assign to project script
Browse files Browse the repository at this point in the history
  • Loading branch information
blackfalcon committed Jan 26, 2024
1 parent 0f0417d commit 7de03bb
Show file tree
Hide file tree
Showing 3 changed files with 631 additions and 5 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/addToProject.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Add issue to Auro project

on:
issues:
types: [opened]

jobs:
call-auro-assign-workflow:
uses: AlaskaAirlines/auro-library/.github/workflows/addToProject.yml@main
secrets: inherit
10 changes: 5 additions & 5 deletions .github/workflows/testPublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
node-version: [ 18.x, 20.x ]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
Expand All @@ -32,15 +32,15 @@ jobs:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 20.x
- run: npm ci
- run: npm run build
- uses: cycjimmy/semantic-release-action@v3
- uses: cycjimmy/semantic-release-action@v4
env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
Loading

0 comments on commit 7de03bb

Please sign in to comment.