Skip to content

Update python3 modules #15

Update python3 modules

Update python3 modules #15

Workflow file for this run

name: Lock closed issues and PRs
on:
issues:
types: [closed]
pull_request:
types: [closed]
permissions:
issues: write
pull-requests: write
jobs:
lock:
runs-on: ubuntu-latest
steps:
- name: Lock issue
if: github.event_name == 'issues'
run: |
gh issue lock ${{ github.event.issue.number }} --reason resolved || true
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
- name: Lock pull request
if: github.event_name == 'pull_request'
run: |
gh pr lock ${{ github.event.pull_request.number }} --reason resolved || true
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}