Skip to content

Add EAS android preview build workflow #1326

Add EAS android preview build workflow

Add EAS android preview build workflow #1326

Workflow file for this run

# Add 'repo' label to any root file changes
repo:

Check failure on line 2 in .github/workflows/labeler.yml

View workflow run for this annotation

GitHub Actions / Pull request labeler

Invalid workflow file

The workflow is not valid. .github/workflows/labeler.yml (Line: 2, Col: 1): Unexpected value 'repo' .github/workflows/labeler.yml (Line: 6, Col: 1): Unexpected value 'test'
- '*'
# Add 'test' label to any change to *.spec.ts and *.spec.js files within the entire repository
test:
- '**/*.spec.ts'
- '**/*.spec.js'
# Add 'frontend' label to any change in the 'client' directory
frontend:
- 'client/**/*.{ts,js}'
- any: ['client/**/*.ts', 'client/**/*.js']
all: ['!client/src/main.ts', '!client/src/main.js']
# Add 'backend' label to any change in the 'server' directory
backend:
- 'server/**/*.{ts,js}'
# Add the 'AnyChange' label to any changes within the entire repository
AnyChange:
- '**'
- '**/.*'
- '**/.*/**'
- '**/.*/**/.*'
# Workflow configuration starts here
name: Pull request labeler
on: [ pull_request_target ]
jobs:
triage:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/labeler@v4
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}