mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: The `add-version-label-issue` CI is failing if the version label is not found. That is happening for previous versions of RN where the Labels are missing. Changelog: [Internal] [Changed] - Do not report a CI failure if add-version-label-issue is red Reviewed By: sammy-SC Differential Revision: D32723953 fbshipit-source-id: 878d2632b3a78311a01363b8f8a9181ae543a253
16 lines
311 B
YAML
16 lines
311 B
YAML
name: Apply version label to issue
|
|
|
|
on:
|
|
issues:
|
|
types: [opened, edited]
|
|
|
|
jobs:
|
|
add-version-label-issue:
|
|
runs-on: ubuntu-latest
|
|
continue-on-error: true
|
|
|
|
steps:
|
|
- uses: lucasbento/core-workflow-apply-version-label@v0.0.6
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|