diff --git a/.github/workflows/automerge.yml b/.github/workflows/automerge.yml index e54f4a1a1..636e48844 100644 --- a/.github/workflows/automerge.yml +++ b/.github/workflows/automerge.yml @@ -6,7 +6,7 @@ permissions: contents: write jobs: - dependabot: + automerge: runs-on: ubuntu-latest if: ${{ github.actor == 'dependabot[bot]' }} steps: @@ -24,4 +24,4 @@ jobs: run: gh pr merge --auto --merge "$PR_URL" env: PR_URL: ${{github.event.pull_request.html_url}} - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} \ No newline at end of file + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/.github/workflows/black.yml b/.github/workflows/black.yml index b04fb15cb..06df9108a 100644 --- a/.github/workflows/black.yml +++ b/.github/workflows/black.yml @@ -1,9 +1,9 @@ -name: Lint +name: Black on: [push, pull_request] jobs: - lint: + black: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/continous_integration.yml b/.github/workflows/continous_integration.yml index c2f113de1..4b5a7b3ac 100644 --- a/.github/workflows/continous_integration.yml +++ b/.github/workflows/continous_integration.yml @@ -19,7 +19,7 @@ on: # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: # This workflow contains a single job called "build" - build: + ci: # The type of runner that the job will run on runs-on: ubuntu-22.04 diff --git a/.github/workflows/isort.yml b/.github/workflows/isort.yml index e91c94cf7..34794b192 100644 --- a/.github/workflows/isort.yml +++ b/.github/workflows/isort.yml @@ -3,7 +3,7 @@ name: Run isort on: [push, pull_request] jobs: - build: + isort: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index c423a8f74..3df6d9058 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -3,7 +3,7 @@ name: Pylint on: [push, pull_request] jobs: - build: + pylint: runs-on: ubuntu-latest