Skip to content

Commit 2375106

Browse files
committed
Use reusable aeon automation workflows
1 parent c5fd6ef commit 2375106

9 files changed

Lines changed: 48 additions & 115 deletions
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+
- "1.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.

.github/workflows/dependabot-auto-merge.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: "Dependabot Auto Merge"
33
on:
44
workflow_run:
55
types:
6-
- completed
6+
- "completed"
77
workflows:
88
- 'Test Suite'
99

.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)