mirror of
https://github.com/mas-cli/mas
synced 2024-11-25 13:00:23 +00:00
f761f1262c
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
17 lines
434 B
YAML
17 lines
434 B
YAML
name: Danger
|
|
on:
|
|
pull_request:
|
|
branches: [ main ]
|
|
jobs:
|
|
danger:
|
|
name: 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.12.3
|
|
with:
|
|
args: --failOnErrors --no-publish-check
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|