Skip to content

[Bug]: tests

[Bug]: tests #7

Workflow file for this run

name: Auto Close Issue Workflow
on:
issues:
types:
- opened
- reopened
- edited
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NUMBER: ${{ github.event.issue.number }}
USER: ${{ github.event.issue.user.login }}
jobs:
autoclose:
if: contains(github.event.issue.body, 'snack.expo.dev') != 'true'
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Close Issue
run: gh issue close "$NUMBER" --comment "@$USER hello! :wave:\n\nThis issue is being automatically closed because it does not follow the issue template."
- name: Label Issue
run: gh issue edit "$NUMBER" --add-label "invalid"
- name: Lock Issue
run: gh issue lock "$NUMBER" -r "spam"