Skip to content

Commit c4d092e

Browse files
authored
Enabled php 8.1 in testsuite, simplified githb workflows (#297)
* Enabled php 8.1 in testsuite, simplified githb workflowS * Updated tools dependencies
1 parent 1a014cf commit c4d092e

29 files changed

+976
-1165
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: "Automation - PR Description Validate"
2+
3+
on:
4+
pull_request:
5+
types: ["opened", "edited", "reopened", "ready_for_review"]
6+
7+
jobs:
8+
automation:
9+
uses: aeon-php/actions/.github/workflows/automation-pr-description-validate.yml@main
10+
secrets:
11+
automation_github_token: "${{ secrets.GITHUB_TOKEN }}"
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: "Automation - Changelog Release"
2+
3+
on:
4+
push:
5+
tags:
6+
- '*'
7+
8+
jobs:
9+
automation:
10+
uses: aeon-php/actions/.github/workflows/automation-changelog-release.yml@main
11+
secrets:
12+
automation_github_token: "${{ secrets.GITHUB_TOKEN }}"
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: "Automation - Changelog Update"
2+
3+
on:
4+
push:
5+
branches:
6+
- "3.x"
7+
8+
jobs:
9+
automation:
10+
uses: aeon-php/actions/.github/workflows/automation-changelog-update.yml@main
11+
secrets:
12+
automation_github_token: "${{ secrets.GITHUB_TOKEN }}"
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: "Automation - Release Description Update"
2+
3+
on:
4+
release:
5+
types:
6+
- "created"
7+
8+
jobs:
9+
automation:
10+
uses: aeon-php/actions/.github/workflows/automation-release-description-update.yml@main
11+
secrets:
12+
automation_github_token: "${{ secrets.GITHUB_TOKEN }}"

.github/workflows/changelog-release.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

.github/workflows/changelog-update.yml

Lines changed: 0 additions & 38 deletions
This file was deleted.
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: "Dependabot Auto Merge"
2+
3+
on:
4+
workflow_run:
5+
types:
6+
- "completed"
7+
workflows:
8+
- 'Test Suite'
9+
10+
jobs:
11+
merge-me:
12+
name: Merge me!
13+
runs-on: ubuntu-latest
14+
steps:
15+
- # It is often a desired behavior to merge only when a workflow execution
16+
# succeeds. This can be changed as needed.
17+
if: ${{ github.event.workflow_run.conclusion == 'success' }}
18+
name: Merge me!
19+
uses: ridedott/merge-me-action@v2
20+
with:
21+
# Depending on branch protection rules, a manually populated
22+
# `GITHUB_TOKEN_WORKAROUND` secret with permissions to push to
23+
# a protected branch must be used. This secret can have an arbitrary
24+
# name, as an example, this repository uses `DOTTBOTT_TOKEN`.
25+
#
26+
# When using a custom token, it is recommended to leave the following
27+
# comment for other developers to be aware of the reasoning behind it:
28+
#
29+
# This must be used as GitHub Actions token does not support pushing
30+
# to protected branches.
31+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/mutation.yml

Lines changed: 0 additions & 65 deletions
This file was deleted.

.github/workflows/pull-request-description-check.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/workflows/release-description-update.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

0 commit comments

Comments
 (0)