Skip to content

Enabled php 8.1 in testsuite, simplified githb workflows #297

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/automatino-pr-description-validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: "Automation - PR Description Validate"

on:
pull_request:
types: ["opened", "edited", "reopened", "ready_for_review"]

jobs:
automation:
uses: aeon-php/actions/.github/workflows/automation-pr-description-validate.yml@main
secrets:
automation_github_token: "${{ secrets.GITHUB_TOKEN }}"
12 changes: 12 additions & 0 deletions .github/workflows/automation-changelog-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: "Automation - Changelog Release"

on:
push:
tags:
- '*'

jobs:
automation:
uses: aeon-php/actions/.github/workflows/automation-changelog-release.yml@main
secrets:
automation_github_token: "${{ secrets.GITHUB_TOKEN }}"
12 changes: 12 additions & 0 deletions .github/workflows/automation-changelog-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: "Automation - Changelog Update"

on:
push:
branches:
- "3.x"

jobs:
automation:
uses: aeon-php/actions/.github/workflows/automation-changelog-update.yml@main
secrets:
automation_github_token: "${{ secrets.GITHUB_TOKEN }}"
12 changes: 12 additions & 0 deletions .github/workflows/automation-release-description-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: "Automation - Release Description Update"

on:
release:
types:
- "created"

jobs:
automation:
uses: aeon-php/actions/.github/workflows/automation-release-description-update.yml@main
secrets:
automation_github_token: "${{ secrets.GITHUB_TOKEN }}"
31 changes: 0 additions & 31 deletions .github/workflows/changelog-release.yml

This file was deleted.

38 changes: 0 additions & 38 deletions .github/workflows/changelog-update.yml

This file was deleted.

31 changes: 31 additions & 0 deletions .github/workflows/dependabot-auto-merge.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: "Dependabot Auto Merge"

on:
workflow_run:
types:
- "completed"
workflows:
- 'Test Suite'

jobs:
merge-me:
name: Merge me!
runs-on: ubuntu-latest
steps:
- # It is often a desired behavior to merge only when a workflow execution
# succeeds. This can be changed as needed.
if: ${{ github.event.workflow_run.conclusion == 'success' }}
name: Merge me!
uses: ridedott/merge-me-action@v2
with:
# Depending on branch protection rules, a manually populated
# `GITHUB_TOKEN_WORKAROUND` secret with permissions to push to
# a protected branch must be used. This secret can have an arbitrary
# name, as an example, this repository uses `DOTTBOTT_TOKEN`.
#
# When using a custom token, it is recommended to leave the following
# comment for other developers to be aware of the reasoning behind it:
#
# This must be used as GitHub Actions token does not support pushing
# to protected branches.
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
65 changes: 0 additions & 65 deletions .github/workflows/mutation.yml

This file was deleted.

20 changes: 0 additions & 20 deletions .github/workflows/pull-request-description-check.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/workflows/release-description-update.yml

This file was deleted.

65 changes: 0 additions & 65 deletions .github/workflows/static-analyze.yml

This file was deleted.

Loading