Skip to content

Commit 92cbb76

Browse files
committed
Changed custom workflows into aeon-php reusable workflows
1 parent 2871895 commit 92cbb76

8 files changed

+47
-112
lines changed
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 }}"
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 }}"
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 }}"
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

-29
This file was deleted.

.github/workflows/changelog-update.yml

-38
This file was deleted.

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

-20
This file was deleted.

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

-25
This file was deleted.

0 commit comments

Comments
 (0)