From 46c1d723b7f23adaaf20e2ded513b55411f73637 Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Wed, 5 Feb 2025 09:16:41 +0200 Subject: [PATCH] feat(ci): start using ivuorinen/actions --- .github/workflows/stale.yml | 13 +++++++------ .github/workflows/sync-labels.yml | 10 ++++++---- 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 112ecb4..2055b92 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -8,11 +8,12 @@ on: workflow_call: workflow_dispatch: -permissions: - contents: write # only for delete-branch option - issues: write - pull-requests: write - jobs: stale: - uses: ivuorinen/.github/.github/workflows/stale.yml@main + runs-on: ubuntu-latest + permissions: + contents: write # only for delete-branch option + issues: write + pull-requests: write + steps: + - uses: ivuorinen/actions/stale@main diff --git a/.github/workflows/sync-labels.yml b/.github/workflows/sync-labels.yml index f8dbfba..e5e2001 100644 --- a/.github/workflows/sync-labels.yml +++ b/.github/workflows/sync-labels.yml @@ -7,15 +7,17 @@ on: branches: - main paths: + - .github/workflows/sync-labels.yml - .github/labels.yml schedule: - cron: "34 5 * * *" workflow_call: workflow_dispatch: -permissions: - issues: write - jobs: SyncLabels: - uses: ivuorinen/.github/.github/workflows/sync-labels.yml@main + permissions: + issues: write + runs-on: ubuntu-latest + steps: + - uses: ivuorinen/actions/sync-labels@main