From 6849f955dd0d911e7a739fd9391fc3f047ac72ac Mon Sep 17 00:00:00 2001 From: amiabot Date: Fri, 25 Oct 2024 22:16:34 +0000 Subject: [PATCH] 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..a8e03cd --- /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 20) + +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: 20