This repository has been archived by the owner on Mar 18, 2024. It is now read-only.
chore(deps): bump web3 from 1.10.4 to 4.6.0 #272
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
# Automation to close issues on "invalid" label addition | |
name: Close Issue/PR on adding invalid label | |
on: | |
issues: | |
types: [labeled] | |
pull_request_target: | |
types: [labeled] | |
permissions: | |
issues: write | |
pull-requests: write | |
jobs: | |
close-on-adding-invalid-label: | |
if: github.event.label.name == 'invalid' && github.repository_owner == 'WebXDAO' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Close issue | |
if: ${{ github.event_name == 'issues' }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: gh issue close ${{ github.event.issue.html_url }} | |
- name: Close PR | |
if: ${{ github.event_name == 'pull_request_target' }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: gh pr close ${{ github.event.pull_request.html_url }} | |