fix privacy manifest #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Pull Request Review" | |
on: | |
pull_request: | |
branches: | |
- 'develop' | |
- 'master' | |
permissions: | |
contents: read | |
issues: read | |
statuses: write | |
pull-requests: write | |
jobs: | |
review: | |
runs-on: macos-latest | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ secrets.GH_ACCESS_TOKEN }} | |
- uses: actions/checkout@v2 | |
- name: Setup swiftlint | |
run: | | |
if !(type swiftlint); then | |
echo 'swiftlint command is not installed.' | |
brew install swiftlint | |
fi | |
- name: Setup danger | |
run: gem install danger danger-swiftlint fastlane | |
- name: Git fetch | |
run: git fetch -t | |
- name: Run danger | |
run: danger | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |