[Textfield] The typography looks fatter than expected #112
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: '🧰 Chat Bot Commands' | |
on: | |
issue_comment: | |
types: [created] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
check-comment: | |
name: Check comment | |
runs-on: ubuntu-latest | |
if: github.repository == 'adevinta/spark-android' && startsWith(github.event.comment.body, '@spark-ui-bot') | |
env: | |
ACTOR: ${{ github.actor }} | |
NUMBER: ${{ github.event.issue.number }} | |
COMMENT: ${{ github.event.comment.body }} | |
steps: | |
- name: Dump GitHub context | |
env: | |
GITHUB_CONTEXT: ${{ toJson(github) }} | |
run: echo "$GITHUB_CONTEXT" | |
- uses: actions/checkout@v3 | |
- if: github.event.issue.pull_request | |
run: gh pr checkout $NUMBER | |
- name: Paparazzi golden images | |
if: github.event.issue.pull_request && contains(github.event.comment.body, 'paparazzi golden images') | |
uses: ./.github/actions/paparazzi-golden-images | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
pr-number: ${{ github.event.issue.number }} | |
- name: DependencyGuardBaseline | |
if: github.event.issue.pull_request && contains(github.event.comment.body, 'dependencyGuardBaseline') | |
uses: ./.github/actions/dependencyguard-baseline | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
pr-number: ${{ github.event.issue.number }} |