remove _WORKLET_RUNTIME global property #10
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: Check for reproduction | |
on: | |
issues: | |
types: [opened, edited] | |
issue_comment: | |
types: [created, edited, deleted] | |
jobs: | |
main: | |
if: ${{ !contains(github.event.issue.labels.*.name, 'maintainer-issue') }} | |
runs-on: ubuntu-latest | |
concurrency: | |
group: needs-repro-${{ github.event.issue.number }} | |
cancel-in-progress: true | |
steps: | |
- name: Checkout Actions | |
uses: actions/checkout@v2 | |
with: | |
repository: 'software-mansion-labs/swmansion-bot' | |
ref: stable | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- name: Use yarn cache | |
uses: actions/cache@v2 | |
id: yarn-cache | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Install Actions | |
run: yarn install | |
- name: Needs Repro | |
uses: ./needs-repro | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
needs-repro-label: 🧰needs-repro | |
needs-repro-response: "Hey! 👋 \n\nThe issue doesn't seem to contain a [minimal reproduction](https://stackoverflow.com/help/minimal-reproducible-example).\n\nCould you provide a snippet of code, a [snack](https://snack.expo.dev/) or a link to a GitHub repository that reproduces the problem?" | |
repro-provided-label: repro-provided | |
check-issues-only-created-after: 2022-01-01 |