Skip to content

Commit

Permalink
Release 0.6.66 (#528)
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelmaksimov25 authored Nov 7, 2023
1 parent 53c2ff7 commit 0aecc23
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 55 deletions.
33 changes: 32 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ on:
push:
branches:
- master
- develop
- feature/[a-z]+-[0-9]+/dev-*
- bugfix/[a-z]+-[0-9]+/dev-*
- rc
workflow_dispatch:

env:
Expand Down Expand Up @@ -91,3 +92,33 @@ jobs:
- name: Code Coverage Report
if: success() && matrix.php-version == '8.1'
uses: codecov/codecov-action@v1

automerge:
runs-on: ubuntu-latest
if: ${{ success() && github.event_name == 'pull_request' && github.base_ref == 'rc' }}
needs: [ validation ]
steps:
# https://github.com/marketplace/actions/list-files-in-pull-request
- uses: ankitjain28may/[email protected]
id: list-files
with:
githubToken: ${{ secrets.PAT }}
outputFormat: 'space-delimited'

# https://github.com/marketplace/actions/merge-pull-requests-automerge-action
- id: automerge
if: ${{ steps.list-files.outputs.pullRequestFiles == 'composer.lock' }}
name: automerge
uses: "pascalgn/[email protected]"
env:
GITHUB_TOKEN: ${{ secrets.PAT }}
MERGE_LABELS: "composer dependencies"
MERGE_METHOD: "squash"
MERGE_COMMIT_MESSAGE: "pull-request-title"
MERGE_FORKS: "false"
MERGE_RETRIES: "3"
MERGE_RETRY_SLEEP: "10000"
MERGE_REQUIRED_APPROVALS: "0"
UPDATE_LABELS: ""
UPDATE_METHOD: "merge"
PULL_REQUEST: ${{ github.event.pull_request.number }}
45 changes: 0 additions & 45 deletions .github/workflows/upgrader-dependency-update-pr.yml

This file was deleted.

18 changes: 9 additions & 9 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0aecc23

Please sign in to comment.