mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Update Glibc 2.37 workflows to use M133 based containers. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust actionlint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * test actionlint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Revert intentional error that actionlint caught. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com>
22 lines
527 B
YAML
22 lines
527 B
YAML
---
|
|
name: ActionLint
|
|
on: workflow_call
|
|
env:
|
|
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.CREW_PR_TOKEN }}
|
|
GH_TOKEN: ${{ secrets.CREW_PR_TOKEN }}
|
|
REVIEWDOG_TOKEN: ${{ secrets.CREW_PR_TOKEN }}
|
|
SHELLCHECK_OPTS: "-e SC2129"
|
|
jobs:
|
|
actionlint:
|
|
runs-on: ubuntu-24.04
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Actionlint
|
|
uses: reviewdog/action-actionlint@v1
|
|
with:
|
|
fail_level: none
|
|
reporter: github-pr-review
|