mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 03:23:08 +00:00
21 lines
569 B
YAML
21 lines
569 B
YAML
#
|
|
# .github/workflows/danger.yml
|
|
#
|
|
# https://docs.github.com/en/actions/reference/environment-variables#default-environment-variables
|
|
---
|
|
name: danger
|
|
on:
|
|
pull_request:
|
|
branches: [main]
|
|
jobs:
|
|
danger:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Danger
|
|
# https://github.com/orgs/danger/packages/container/package/danger-swift
|
|
uses: docker://ghcr.io/danger/danger-swift:3.18.0
|
|
with:
|
|
args: --failOnErrors --no-publish-check
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|