From 174becda85df37cc4a5faa07c8b5eb9461036bab Mon Sep 17 00:00:00 2001 From: amiabot Date: Mon, 17 Mar 2025 19:26:17 +0000 Subject: [PATCH 1/2] Update: created local '.github/workflows/issues.yml' from remote '.github/workflows/issues.yml' --- .github/workflows/issues.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/issues.yml 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 From 0fcbee55b16642e57fa88c5b1b1263429d45ce3b Mon Sep 17 00:00:00 2001 From: amiabot Date: Mon, 17 Mar 2025 19:26:18 +0000 Subject: [PATCH 2/2] Update: created local '.github/workflows/verify-build.yml' from remote 'workflows/verify-build-default.yml' --- .github/workflows/verify-build.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/verify-build.yml 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