Compare commits

...

2 Commits

Author SHA1 Message Date
Lucas Fernando Cardoso Nunes
66447c7eff Update periodic-snapshot.yml 2025-05-01 08:44:36 -04:00
Lucas Fernando Cardoso Nunes
ae89da31ca fix: snapshot only on default branch 2025-05-01 08:44:36 -04:00

View File

@@ -2,7 +2,7 @@ name: Periodic Snapshot
on:
schedule:
- cron: '10 0 1 * *' # 10 minutes after midnight on the first of every month
- cron: '10 0 1 * *' # 10 minutes after midnight on the first day of every month
workflow_dispatch:
inputs:
bump:
@@ -24,6 +24,7 @@ permissions:
jobs:
bump-version-and-tag:
runs-on: ubuntu-latest
if: github.ref_name == github.event.repository.default_branch
steps:
- uses: actions/checkout@v4
with: