Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,11 @@ jobs:
fi
- name: Run setup command
if: inputs.setup_command != ''
run: ${{ inputs.setup_command }}
# This file is used as a template for other workflows, so
# using a template include here is necessary; however, this
# means downstream consumers must be careful not to accept user
# input into their setup_commands.
run: ${{ inputs.setup_command }} # zizmor: ignore[template-injection]
- name: Build
uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_cocoapods.cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
if: inputs.setup_command != ''
env:
plist_secret: ${{ secrets.plist_secret }}
run: ${{ inputs.setup_command }}
run: ${{ inputs.setup_command }} # zizmor: ignore[template-injection]
- name: PodLibLint Cron
uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_cocoapods.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ jobs:
if: inputs.setup_command != ''
env:
plist_secret: ${{ secrets.plist_secret }}
run: ${{ inputs.setup_command }}
run: ${{ inputs.setup_command }} # zizmor: ignore[template-injection]
- name: Lint ${{ inputs.product }}.podspec for ${{ matrix.platform }}
uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3
if: contains(inputs.platforms, matrix.platform)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_quickstart.framework.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
mkdir -p "${HOME}"/ios_frameworks/
find "${GITHUB_WORKSPACE}" -name "Firebase*latest.zip" -exec unzip -d "${HOME}"/ios_frameworks/ {} +
- name: Setup quickstart
run: ${{ inputs.setup_command }}
run: ${{ inputs.setup_command }} # zizmor: ignore[template-injection]
- name: Install Secret GoogleService-Info.plist
env:
PLIST_SRC_PATH: ${{ inputs.plist_src_path }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_quickstart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
continue_on_error: true
command: xcodebuild -downloadPlatform iOS
- name: Run setup command.
run: ${{ inputs.setup_command }}
run: ${{ inputs.setup_command }} # zizmor: ignore[template-injection]
- name: Install Secret GoogleService-Info.plist
env:
PLIST_SRC_PATH: ${{ inputs.plist_src_path }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_spm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ jobs:
command: xcodebuild -downloadPlatform ${{ matrix.platform }}
- name: Run setup command, if needed.
if: inputs.setup_command != ''
run: ${{ inputs.setup_command }}
run: ${{ inputs.setup_command }} # zizmor: ignore[template-injection]
- name: Initialize xcodebuild
run: scripts/setup_spm_tests.sh
- uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/infra.danger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ jobs:
with:
app-id: ${{ secrets.DANGER_APP_ID }}
private-key: ${{ secrets.DANGER_APP_PRIVATE_KEY }}
permissions:
contents: read
issues: write
pull-requests: write

- uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1
- name: Setup Bundler
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/infra.ftl.nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
- name: Xcode
run: sudo xcode-select -s /Applications/Xcode_16.4.app/Contents/Developer
- name: Setup quickstart
run: ${{ matrix.setup_command }}
run: ${{ matrix.setup_command }} # zizmor: ignore[template-injection]
- name: Install Secret GoogleService-Info.plist
run: |
scripts/decrypt_gha_secret.sh \
Expand Down
Loading