From cacbb38bf853f4d47c71f52050f1b895c981b8ac Mon Sep 17 00:00:00 2001 From: px Date: Thu, 19 Jun 2025 20:32:54 -0700 Subject: [PATCH 1/3] =?UTF-8?q?=F0=9F=94=A7=20fix(workflows):=20Update=20d?= =?UTF-8?q?ays=5Fstale=20parameter=20to=2013=20for=20improved=20branch=20c?= =?UTF-8?q?leanup=20efficiency?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/call-auto-merge.yml | 3 ++- .github/workflows/call-cleanup-branch.yml | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/call-auto-merge.yml b/.github/workflows/call-auto-merge.yml index c699aeb..ac28e15 100644 --- a/.github/workflows/call-auto-merge.yml +++ b/.github/workflows/call-auto-merge.yml @@ -38,6 +38,7 @@ on: jobs: call-auto-merge: + name: Call Auto Merge # uses: ./.github/workflows/auto-merge.yml uses: variablesoftware/github-workflows/.github/workflows/auto-merge.yml@main # uses: variablesoftware/github-workflows/.github/workflows/auto-merge.yml@v1 @@ -45,4 +46,4 @@ jobs: secrets: inherit # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - + diff --git a/.github/workflows/call-cleanup-branch.yml b/.github/workflows/call-cleanup-branch.yml index ba1cfde..9d9e872 100644 --- a/.github/workflows/call-cleanup-branch.yml +++ b/.github/workflows/call-cleanup-branch.yml @@ -1,3 +1,5 @@ +name: Call Cleanup Branch + # This workflow demonstrates how to call the reusable cleanup-branch workflow on: From 4aae0aa2e422266492f61d1d5de288508edf8fc6 Mon Sep 17 00:00:00 2001 From: px Date: Fri, 20 Jun 2025 10:48:43 -0700 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=9A=80=20=F0=9F=94=A7=20fix(workflows?= =?UTF-8?q?):=20Add=20names=20to=20workflow=20files=20for=20better=20clari?= =?UTF-8?q?ty=20and=20organization?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/call-auto-merge.yml | 6 ++---- .github/workflows/call-ci-semantic-release-npm-sync.yml | 3 ++- .github/workflows/call-ci-semantic-release-sync.yml | 3 ++- .github/workflows/call-cleanup-branch.yml | 2 +- .github/workflows/call-prune-releases.yaml | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/call-auto-merge.yml b/.github/workflows/call-auto-merge.yml index ac28e15..16b73f3 100644 --- a/.github/workflows/call-auto-merge.yml +++ b/.github/workflows/call-auto-merge.yml @@ -1,3 +1,5 @@ +name: Call Auto Merge + env: ACTIONS_STEP_DEBUG: true ACTIONS_RUNNER_DEBUG: true @@ -39,11 +41,7 @@ on: jobs: call-auto-merge: name: Call Auto Merge - # uses: ./.github/workflows/auto-merge.yml uses: variablesoftware/github-workflows/.github/workflows/auto-merge.yml@main - # uses: variablesoftware/github-workflows/.github/workflows/auto-merge.yml@v1 - # uses: variablesoftware/github-workflows/.github/workflows/auto-merge.yml@38038641148ab8eaa7c9be80d9041a6c8c80641e secrets: inherit - # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/call-ci-semantic-release-npm-sync.yml b/.github/workflows/call-ci-semantic-release-npm-sync.yml index 17d902a..bd9c137 100644 --- a/.github/workflows/call-ci-semantic-release-npm-sync.yml +++ b/.github/workflows/call-ci-semantic-release-npm-sync.yml @@ -1,3 +1,5 @@ +name: Call CI Semantic Release NPM Sync + env: ACTIONS_STEP_DEBUG: true ACTIONS_RUNNER_DEBUG: true @@ -51,4 +53,3 @@ jobs: RUN_LINT: 0 RUN_BUILD: 0 RUN_TEST: 0 - \ No newline at end of file diff --git a/.github/workflows/call-ci-semantic-release-sync.yml b/.github/workflows/call-ci-semantic-release-sync.yml index 32bf2ec..09650da 100644 --- a/.github/workflows/call-ci-semantic-release-sync.yml +++ b/.github/workflows/call-ci-semantic-release-sync.yml @@ -1,3 +1,5 @@ +name: Call CI Semantic Release Sync + env: ACTIONS_STEP_DEBUG: true ACTIONS_RUNNER_DEBUG: true @@ -50,4 +52,3 @@ jobs: RUN_BUILD: 0 RUN_TEST: 0 RUN_RELEASE: ${{ inputs.RUN_RELEASE || '1' }} - \ No newline at end of file diff --git a/.github/workflows/call-cleanup-branch.yml b/.github/workflows/call-cleanup-branch.yml index 9d9e872..5947fb4 100644 --- a/.github/workflows/call-cleanup-branch.yml +++ b/.github/workflows/call-cleanup-branch.yml @@ -35,9 +35,9 @@ on: jobs: cleanup_branch: uses: variablesoftware/github-workflows/.github/workflows/cleanup-branch.yml@main + secrets: inherit with: commit_threshold: 10 # Optional, default is 10 days_stale: 13 # Optional, default is 30 base_branch: main # Optional, default is 'main' dry_run: false # Set to true for testing, false to actually open PRs - secrets: inherit diff --git a/.github/workflows/call-prune-releases.yaml b/.github/workflows/call-prune-releases.yaml index b62beb0..641e8bb 100644 --- a/.github/workflows/call-prune-releases.yaml +++ b/.github/workflows/call-prune-releases.yaml @@ -1,3 +1,5 @@ +name: Call Prune Releases + on: workflow_dispatch: @@ -32,6 +34,4 @@ on: jobs: prune_releases: uses: variablesoftware/github-workflows/.github/workflows/prune-releases.yaml@main - with: - releases_to_keep: 5 # Optional, defaults to 3 secrets: inherit \ No newline at end of file From c09cfed4cef7ef2807ec1e77bed08ba7693d0464 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Fri, 20 Jun 2025 17:49:33 +0000 Subject: [PATCH 3/3] =?UTF-8?q?=F0=9F=A4=96=20chore(release):=201.2.6=20[s?= =?UTF-8?q?kip=20ci]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## [1.2.6](https://github.com/variablesoftware/github-workflows/compare/v1.2.5...v1.2.6) (2025-06-20) --- CHANGELOG.md | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 44e4888..718c152 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## [1.2.6](https://github.com/variablesoftware/github-workflows/compare/v1.2.5...v1.2.6) (2025-06-20) + ## [1.2.5](https://github.com/variablesoftware/github-workflows/compare/v1.2.4...v1.2.5) (2025-06-20) ## [1.2.4](https://github.com/variablesoftware/github-workflows/compare/v1.2.3...v1.2.4) (2025-06-20) diff --git a/package.json b/package.json index a183b3f..36c3162 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "github-workflows", - "version": "1.2.5", + "version": "1.2.6", "description": "Reusable GitHub Actions workflows for the organization.", "main": "README.md", "license": "MIT",