chore(deps): update gautamkrishnar/keepalive-workflow action to v2 - autoclosed #43
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.2.6
->2.0.5
Release Notes
gautamkrishnar/keepalive-workflow (gautamkrishnar/keepalive-workflow)
v2.0.5
Compare Source
What's Changed
Full Changelog: gautamkrishnar/keepalive-workflow@2.0.4...2.0.5
v2.0.4
Compare Source
What's Changed
Full Changelog: gautamkrishnar/keepalive-workflow@2.0.3...2.0.4
v2.0.3
Compare Source
What's Changed
Full Changelog: gautamkrishnar/keepalive-workflow@2.0.2...2.0.3
v2.0.2
Compare Source
What's Changed
Full Changelog: gautamkrishnar/keepalive-workflow@2.0.1...2.0.2
v2.0.1
Compare Source
What's Changed
Added multi workflow keepalive
Now you can keep multiple Github actions alive using a single keepalive workflow. Previously you had to add separate keepalive workflow to all the cronjob-triggered Github actions for this to happen.
Example
Let's assume that you have some build workflows:
.github/workflows/build1.yml
.github/workflows/build2.yml
You can now keep both of these workflows active using the following keepalive workflow code:
.github/workflows/keepalive.yml
Result:
Other changes
New Contributors
Full Changelog: gautamkrishnar/keepalive-workflow@2.0.0...2.0.1
v2.0.0
Compare Source
Version 2 🎉 ✨
For a long time, this workflow was using a dummy commit approach to keep the repositories active, this method was effective but came with a side effect. It automatically creates a dummy commit every 50 days, which makes this workflow un-usable for many serious open-source projects, since they heavily rely on commit history. To keep the repository active, this was the only option when I created this workflow.
GitHub made some changes recently, now simply calling the GitHub Action API's enable API Call will keep the workflow active indefinitely. This feature was added to this workflow as an opt-in feature for people to use. Version 2 will make this method the default method for the keep-alive workflow.
People who are using
v1
andmaster
tags of this workflow will continue using the dummy commit method since the newly added API-based method requires explicit permission for the API Keys for it to function.Migrating from v1 to v2
If you are an existing user which used this workflow's v1 version, you can easily migrate to v2 by simply updating the permissions key in your workflow:
Change:
to
And change the workflow's version from
gautamkrishnar/keepalive-workflow@v1
orgautamkrishnar/keepalive-workflow@master
togautamkrishnar/keepalive-workflow@v2
. This will automatically start using the workflow's API based method. No more dummy commits 🕺 .What's Changed
Full Changelog: gautamkrishnar/keepalive-workflow@v1...2.0.0
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.