This repository has been archived by the owner on Dec 31, 2021. It is now read-only.
Releases: Ash258/Scoop-GithubActions
Releases · Ash258/Scoop-GithubActions
Small tweaks
- Support
SCOOP_BRANCH
environment - Keep consistent PR naming with bucket files
Tweaks and fixes
- PR name consistency
<manifest>@<version>: Hash fix
=><manifest>@<version>: Fix hash
- Add
duplicate
label for hash check failures - Post comment to issue if the reported manifest does not exist in the bucket
- Add native GitHub
help wanted
label instead ofhelp-wanted
- Remove label
verify
if it was added in all cases
QOL: Tweaks
- PR name consistency
duplicate
label for hash fixes
Autoupdate hash extraction
1.0.3.1 fix(PR): Do not execute hash extraction unless autoupdate finished (#66)
PR action checkver
1.0.3 Merge branch 'master' of https://github.com/Ash258/Scoop-GithubAction…
Windows environment
Use windows-latest
as run-on
. This will allow to execute scoop directly and without hackarounds inside alpine linux.
Pipelines are faster as docker image is not build always.
Behaviour of Actions is same as in previous docker version. Some tweaks and optimisations were done to PR checks.
Do not use casing comparion while looking for Hash fixed PRs
Prevent possible flood of same PR only differ with one uppercase character
See:
Email is now optional
There is no need to have GITH_EMAIL
environment, but if you care for contributions you should configure it.
🎉🎉 First official release 🎉🎉
- All actions are working as far as I can tell from my testing
- Comments should be polished and grammatically correct
Support labeled issues
Now as soon as verify
label is added into issue, appropriate action is executed
See readme for workflow file edit.
on:
issues:
- types: [opened]
+ types: [opened, labeled]
...
- if: github.event.action == 'opened'
+ if: github.event.action == 'opened' || (github.event.action == 'labeled' && contains(github.event.issue.labels.*.name, 'verify'))