Skip to content

. d make acknowledgements h2 #60

. d make acknowledgements h2

. d make acknowledgements h2 #60

Workflow file for this run

name: Sample app
on:
workflow_dispatch:
schedule:
# each 5th day of month
- cron: "0 0 5 * *"
push:
branches: [ main ]
pull_request:
branches: [ main ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build and test
runs-on: macos-latest
steps:
- uses: actions/checkout@v7
- name: List available Xcode versions
run: ls /Applications | grep Xcode
- name: Show current version of Xcode
run: xcodebuild -version
- name: Run tests
run: ./run_sample_tests.sh
auto-merge:
needs: [ build ]
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v7
- name: auto-merge
if: |
github.actor == 'dependabot[bot]' &&
github.event_name == 'pull_request'
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # built-in token
run: |
GH_TOKEN="$GITHUB_TOKEN" ./merge_dependabot.sh