Add support for WIF and ADC in App Distribution Gradle Plugin #10457
This file contains hidden or 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: Verify changelog update | |
| on: | |
| pull_request | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| changelog-check: | |
| runs-on: ubuntu-22.04 | |
| env: | |
| BUNDLE_GEMFILE: ./ci/danger/Gemfile | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| fetch-depth: 100 | |
| submodules: true | |
| - uses: ruby/setup-ruby@0481980f17b760ef6bca5e8c55809102a0af1e5a # v1.263.0 | |
| with: | |
| ruby-version: '3.4' | |
| - name: Setup Bundler | |
| run: ./ci/danger/setup_bundler.sh | |
| - name: Danger CHANGELOG verifier | |
| env: | |
| DANGER_GITHUB_API_TOKEN: ${{ secrets.GOOGLE_OSS_BOT_TOKEN }} | |
| run: | |
| '[ ! -z $DANGER_GITHUB_API_TOKEN ] && bundle exec danger --dangerfile=./ci/danger/Dangerfile || echo "Skipping Danger for External Contributor"' |