feat(microprofile): NFT mirror-node queries not implemented #10
This file contains hidden or 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
| # SPDX-License-Identifier: Apache-2.0 | |
| name: "Approve Issues" | |
| on: | |
| issues: | |
| types: | |
| - labeled | |
| defaults: | |
| run: | |
| shell: bash | |
| permissions: | |
| issues: write | |
| jobs: | |
| approve: | |
| if: github.event.label.name == 'approved' | |
| name: Approve Issue | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@ab7a9404c0f3da075243ca237b5fac12c98deaa5 # v2.19.3 | |
| with: | |
| egress-policy: audit | |
| - name: Remove pending-review label | |
| uses: actions-ecosystem/action-remove-labels@2ce5d41b4b6aa8503e285553f75ed56e0a40bae0 # v1.3.0 | |
| with: | |
| labels: pending-review | |
| - name: Unlock issue | |
| run: | | |
| gh api \ | |
| -X DELETE \ | |
| repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/lock | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Approval comment | |
| uses: peter-evans/create-or-update-comment@e8674b075228eee787fea43ef493e45ece1004c9 # v5.0.0 | |
| with: | |
| issue-number: ${{ github.event.issue.number }} | |
| body: | | |
| Approved by @hiero-ledger/hiero-enterprise-java-committers and @hiero-ledger/hiero-enterprise-java-maintainers. |