diff --git a/.github/workflows/issues.yml b/.github/workflows/issues.yml new file mode 100644 index 0000000..6347d1d --- /dev/null +++ b/.github/workflows/issues.yml @@ -0,0 +1,12 @@ +# This file is managed in https://github.com/happyprime/projects +name: Add new issues to Happy Prime project + +on: + issues: + types: + - opened + +jobs: + add-to-project: + uses: happyprime/workflows/.github/workflows/issues.yml@trunk + secrets: inherit diff --git a/.github/workflows/verify-build.yml b/.github/workflows/verify-build.yml new file mode 100644 index 0000000..a37683d --- /dev/null +++ b/.github/workflows/verify-build.yml @@ -0,0 +1,19 @@ +# This file is managed in https://github.com/happyprime/projects +name: Verify build (Node 22) + +on: pull_request + +# The GITHUB_TOKEN used by Dependabot has read-only permissions by default. We +# provide write permissions to this workflow so that comments can be left on +# the pull request. +# +# @see https://docs.github.com/en/code-security/dependabot/working-with-dependabot/automating-dependabot-with-github-actions#changing-github_token-permissions +permissions: + contents: read + pull-requests: write + +jobs: + call-workflow: + uses: happyprime/workflows/.github/workflows/verify-build.yml@trunk + with: + node-version: 22