commit: 1a495b7809ba7e662703702a53a1598fdba397af Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org> AuthorDate: Mon May 2 12:06:47 2022 +0000 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org> CommitDate: Mon May 2 12:07:54 2022 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=1a495b78
.github/workflows/pkgcheck.yml: try re-enable pkgcheck Revert "pkgcheck.yml: previous commit was not enough, just remove the file for now" This reverts commit 14ed9ff340aff882ce6ebb42f4b489f3e035aff3. Revert "pkgcheck.yml: disable for now" This reverts commit 6c8402543717d6c12860a6c5ca55ea127d29672f. Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org> .github/workflows/pkgcheck.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/pkgcheck.yml b/.github/workflows/pkgcheck.yml new file mode 100644 index 000000000..e3abc3de6 --- /dev/null +++ b/.github/workflows/pkgcheck.yml @@ -0,0 +1,19 @@ +name: pkgcheck + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + schedule: + - cron: '0 0 * * *' + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Run pkgcheck + uses: pkgcore/pkgcheck-action@v1 + with: + args: --keywords=-RedundantVersion,-MissingAccountIdentifier,-OldPackageUpdate,-VisibleVcsPkg
