Update install.sh was linking to 404 v1.42 for ios couldn't build now linked to v1.41 that has ios-x86_64 #5313
Workflow file for this run
This file contains 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: Require changelog entry | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, labeled, unlabeled] | |
jobs: | |
check-changelog: | |
if: contains(github.event.pull_request.labels.*.name, 'changelog') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Check if changes to CHANGELOG.md | |
shell: bash | |
env: | |
BASE_REF: ${{ github.event.pull_request.base.ref }} | |
run: .github/scripts/check-changelog.sh |