[Android] Recursive search for package json file reads the latest version from npm cache instead of actual package json file from project #11
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
# This workflow close issue and add comment after the issue labaled as 'inactive' | |
name: Close issue | |
on: | |
issues: | |
types: | |
- labeled | |
jobs: | |
close-inactive-issue: | |
if: github.event.label.name == 'Inactive' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Close issue due to inactivity | |
uses: peter-evans/close-issue@v2 | |
with: | |
issue-number: ${{ github.event.issue.number }} | |
comment: | | |
This issue is closed due to inactivity. If the issue continue, please open a new one. |