Skip to content

Commit

Permalink
Updating workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
erikrj committed Nov 6, 2024
1 parent aeba8f0 commit 1de2ba9
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
on:
pull_request:
branches:
- main
- develop
workflow_dispatch:
name: ci
jobs:
ci:
uses: truemark/github-workflows/.github/workflows/javascript-library-build.yml@main
with:
node-versions: "[18,20,22]"
1 change: 1 addition & 0 deletions .github/workflows/issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
jobs:
add-to-project:
name: Add issue to project
if: github.actor != 'dependabot[bot]'
uses: truemark/github-workflows/.github/workflows/issues.yml@main
secrets:
private-key: ${{ secrets.ISSUES_BOT_KEY }}
Expand Down
20 changes: 20 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
on:
push:
branches:
- main
- develop
workflow_dispatch:
name: publish
permissions:
contents: write
pages: write
id-token: write
jobs:
publish:
uses: truemark/github-workflows/.github/workflows/javascript-library.yml@main
with:
node-versions: "[18,20,22]"
publish-node-version: "22"
secrets:
app-id: ${{ secrets.RELEASE_BOT_ID }}
private-key: ${{ secrets.RELEASE_BOT_KEY }}

0 comments on commit 1de2ba9

Please sign in to comment.