Make default background color grey to make buttons/inputs/containers standout #280
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: Generate podfile.lock | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
bump-pods: | |
runs-on: macos-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v2 | |
# Checks-out our repository under $GITHUB_WORKSPACE, so our job can access it | |
- name: Setup app | |
uses: ./.github/actions/setup-app | |
- run: cd ios && pod install --repo-update | |
- run: git diff | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Regenerated pod lockfile |