mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Adjust Repology workflow to use steps from working workflows. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix linebreaks... Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Use Actionlint for run blocks, and also fix Repology.yml Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com>
21 lines
574 B
YAML
21 lines
574 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 }}
|
|
jobs:
|
|
yamllint:
|
|
runs-on: ubuntu-24.04
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: YAMLLint
|
|
uses: reviewdog/action-actionlint@6612efe1589ccf23cb1320d11fced44b86fb5ad7 # Post v1.7.4 commit to support fail_level
|
|
with:
|
|
fail_level: none
|
|
reporter: github-pr-review
|