Skip to content
This repository has been archived by the owner on Dec 31, 2021. It is now read-only.

Releases: Ash258/Scoop-GithubActions

Small tweaks

02 Dec 18:52
Compare
Choose a tag to compare
  • Support SCOOP_BRANCH environment
  • Keep consistent PR naming with bucket files

Tweaks and fixes

09 Oct 20:01
Compare
Choose a tag to compare
  • 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 of help-wanted
  • Remove label verify if it was added in all cases

QOL: Tweaks

14 Aug 09:06
Compare
Choose a tag to compare
QOL: Tweaks Pre-release
Pre-release
  • PR name consistency
  • duplicate label for hash fixes

Autoupdate hash extraction

08 May 09:17
a74747f
Compare
Choose a tag to compare
1.0.3.1

fix(PR): Do not execute hash extraction unless autoupdate finished (#66)

PR action checkver

26 Apr 12:24
Compare
Choose a tag to compare
Merge branch 'master' of https://github.com/Ash258/Scoop-GithubAction…

…s into stable

Windows environment

04 Jan 12:30
Compare
Choose a tag to compare
Windows environment Pre-release
Pre-release

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

Email is now optional

08 Nov 19:33
Compare
Choose a tag to compare

There is no need to have GITH_EMAIL environment, but if you care for contributions you should configure it.

🎉🎉 First official release 🎉🎉

26 Oct 19:49
Compare
Choose a tag to compare
  • All actions are working as far as I can tell from my testing
  • Comments should be polished and grammatically correct

Support labeled issues

22 Oct 19:47
Compare
Choose a tag to compare

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'))