Bump org.mockito:mockito-core from 5.13.0 to 5.14.0 #512
Workflow file for this run
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: Copy labels from issue to pull request | |
on: | |
pull_request_target: | |
types: [opened, edited] | |
jobs: | |
transfer_tags: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools | |
pip install -r .github/workflows/label_transfer/requirements.txt | |
pip freeze | |
- name: Run Python label transfer script | |
run: python .github/workflows/label_transfer/script.py ${{ github.event.number }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_REPO: ${{ github.repository }} |