bug: Does not return collection data when more than one query constraint #1240
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: Remove needs-reply label | |
on: | |
issue_comment: | |
types: | |
- created | |
permissions: | |
issues: write | |
jobs: | |
needs-reply: | |
runs-on: ubuntu-latest | |
if: github.repository == 'capawesome-team/capacitor-firebase' && github.event.comment.author_association != 'MEMBER' | |
steps: | |
- name: Remove needs-reply label | |
run: | | |
curl --request DELETE \ | |
--url 'https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/labels/needs%3A%20reply' \ | |
--header 'Authorization: token ${{ secrets.GITHUB_TOKEN }}' |