mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: GITHUB_TOKEN doesn't have write permissions on forks, using the pullbot token instead. https://docs.github.com/en/actions/security-guides/automatic-token-authentication#permissions-for-the-github_token ## Changelog <!-- Help reviewers and the release process by writing your own changelog entry. For an example, see: https://github.com/facebook/react-native/wiki/Changelog --> [Internal] - Use pullbot token instead of GITHUB_TOKEN on the Danger Action Pull Request resolved: https://github.com/facebook/react-native/pull/33900 Test Plan: CI will validate it Reviewed By: cipolleschi Differential Revision: D36627043 Pulled By: f-meloni fbshipit-source-id: bc7ff2f463c9d7cac61d362440858945edfbdbaf
20 lines
599 B
YAML
20 lines
599 B
YAML
name: Run Danger on PR
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, edited, reopened, synchronize]
|
|
|
|
jobs:
|
|
danger:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: yarn install
|
|
working-directory: bots
|
|
- name: Danger
|
|
run: DANGER_GITHUB_API_TOKEN="$PUBLIC_PULLBOT_GITHUB_TOKEN_A""$PUBLIC_PULLBOT_GITHUB_TOKEN_B" yarn danger ci --use-github-checks --failOnErrors --id danger_pr
|
|
working-directory: bots
|
|
env:
|
|
PUBLIC_PULLBOT_GITHUB_TOKEN_A: a6edf8e8d40ce4e8b11a
|
|
PUBLIC_PULLBOT_GITHUB_TOKEN_B: 150e1341f4dd9c944d2a
|