summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/android-app.yml4
-rw-r--r--.github/workflows/verify-locked-down-signatures.yml6
2 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/android-app.yml b/.github/workflows/android-app.yml
index 19f69c5fae..0bda8348f3 100644
--- a/.github/workflows/android-app.yml
+++ b/.github/workflows/android-app.yml
@@ -23,9 +23,9 @@ on:
description: Override container image
type: string
required: false
- # Build if master is updated to ensure up-to-date caches are available
+ # Build if main is updated to ensure up-to-date caches are available
push:
- branches: [master]
+ branches: [main]
jobs:
prepare:
name: Prepare
diff --git a/.github/workflows/verify-locked-down-signatures.yml b/.github/workflows/verify-locked-down-signatures.yml
index cf4657a479..0e4f281a51 100644
--- a/.github/workflows/verify-locked-down-signatures.yml
+++ b/.github/workflows/verify-locked-down-signatures.yml
@@ -29,8 +29,8 @@ jobs:
run: |-
commits=${{ github.event.pull_request.commits }}
if [[ -n "$commits" ]]; then
- # Prepare enough depth for diffs with master, currently hard-coded but should probably be
+ # Prepare enough depth for diffs with main, currently hard-coded but should probably be
# whatever branch is merged into
- git fetch --depth="$(( commits + 1 ))" origin ${{ github.head_ref }} master
+ git fetch --depth="$(( commits + 1 ))" origin ${{ github.head_ref }} main
fi
- ci/verify-locked-down-signatures.sh --import-gpg-keys --whitelist origin/master
+ ci/verify-locked-down-signatures.sh --import-gpg-keys --whitelist origin/main