-
Notifications
You must be signed in to change notification settings - Fork 5
31 lines (27 loc) · 950 Bytes
/
pull-request.yaml
File metadata and controls
31 lines (27 loc) · 950 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: Pull Request
on:
pull_request:
branches: [ develop ]
workflow_dispatch:
jobs:
pull_request_checks:
name: Pull request checks
runs-on: macos-26
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Common setup
uses: ./.github/actions/setup
- name: Run pull request checks
run: |
bundle exec fastlane ci_pull_request
env:
CONNECT_API_KEY: ${{ secrets.CONNECT_API_KEY }}
FASTLANE_USER: ${{ secrets.FASTLANE_USER }}
FASTLANE_TEAM_ID: ${{ secrets.FASTLANE_TEAM_ID }}
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }}
TUIST_TOKEN: ${{ secrets.TUIST_CONFIG_TOKEN }}
SENTRY_DSYM_TOKEN: ${{ secrets.SENTRY_DSYM_TOKEN }}
TG_BOT_TOKEN: ${{ secrets.TG_BOT_TOKEN }}
TG_CHAT_ID: ${{ secrets.TG_CHAT_ID }}