-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #93 from buggregator/ci/workflows
- Loading branch information
Showing
8 changed files
with
337 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
|
||
# this file is for the labeler workflow job | ||
# Documentation https://github.com/marketplace/actions/labeler | ||
|
||
"bug": | ||
- head-branch: ['^bug', '^fix', 'bug', 'fix'] | ||
|
||
"enhancement": | ||
- head-branch: ['^feature', '^feat', 'feature'] | ||
|
||
"documentation": | ||
- changed-files: | ||
- any-glob-to-any-file: ['.github/*.md', './*.md'] | ||
|
||
"maintenance": | ||
- changed-files: | ||
- any-glob-to-any-file: ['.github/**/*'] | ||
|
||
"tests": | ||
- changed-files: | ||
- any-glob-to-any-file: ['tests/**/*', 'phpunit*', 'psalm*'] | ||
|
||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
|
||
# This workflow will triage pull requests and apply a label based on the | ||
# paths that are modified in the pull request. | ||
# | ||
# To use this workflow, you will need to set up a .github/labeler.yml | ||
# file with configuration. For more information, see: | ||
# https://github.com/actions/labeler/blob/master/README.md | ||
|
||
on: # yamllint disable-line rule:truthy | ||
pull_request: | ||
|
||
name: 🏷️ Add labels | ||
|
||
jobs: | ||
label: | ||
uses: wayofdev/gh-actions/.github/workflows/[email protected] | ||
with: | ||
os: ubuntu-latest | ||
secrets: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
--- | ||
|
||
on: # yamllint disable-line rule:truthy | ||
push: | ||
tags: | ||
- '*.*.*' | ||
release: | ||
types: | ||
- published | ||
|
||
name: 📦 Build PHAR release | ||
|
||
jobs: | ||
release: | ||
build-release: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 4 | ||
strategy: | ||
|
@@ -122,3 +122,22 @@ jobs: | |
core.setFailed(error.message); | ||
} | ||
} | ||
notify-discord: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 4 | ||
steps: | ||
- name: 📦 Check out the codebase | ||
uses: actions/[email protected] | ||
|
||
- name: ✉️ Notify Discord about release | ||
uses: SethCohen/[email protected] | ||
with: | ||
webhook_url: ${{ secrets.DISCORD_WEBHOOK_URL }} | ||
color: '2105893' | ||
username: 'Buggregator Trap release' | ||
avatar_url: 'https://cdn.discordapp.com/avatars/487431320314576937/bd64361e4ba6313d561d54e78c9e7171.png' | ||
content: '||@here||' | ||
footer_title: 'Changelog' | ||
footer_icon_url: 'https://cdn.discordapp.com/avatars/487431320314576937/bd64361e4ba6313d561d54e78c9e7171.png' | ||
footer_timestamp: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,196 @@ | ||
--- | ||
|
||
on: # yamllint disable-line rule:truthy | ||
pull_request: | ||
branches: | ||
- master | ||
push: | ||
branches: | ||
- master | ||
|
||
name: 🧹 Fix PHP coding standards | ||
|
||
jobs: | ||
commit-linting: | ||
timeout-minutes: 4 | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
pull-requests: read | ||
steps: | ||
- name: 📦 Check out the codebase | ||
uses: actions/[email protected] | ||
|
||
- name: 🧐 Lint commits using "commitlint" | ||
uses: wagoid/[email protected] | ||
with: | ||
configFile: ${{ github.workspace }}/.github/.commitlint.config.mjs | ||
failOnWarnings: false | ||
failOnErrors: false | ||
helpURL: 'https://github.com/conventional-changelog/commitlint/#what-is-commitlint' | ||
|
||
yaml-linting: | ||
timeout-minutes: 4 | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
pull-requests: read | ||
steps: | ||
- name: 📦 Check out the codebase | ||
uses: actions/[email protected] | ||
|
||
- name: 🧐 Lint YAML files | ||
uses: ibiqlik/[email protected] | ||
with: | ||
config_file: .yamllint.yaml | ||
file_or_dir: '.' | ||
strict: true | ||
|
||
markdown-linting: | ||
timeout-minutes: 4 | ||
runs-on: ubuntu-latest | ||
concurrency: | ||
cancel-in-progress: true | ||
group: markdown-linting-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
steps: | ||
- name: 📦 Check out the codebase | ||
uses: actions/[email protected] | ||
|
||
- name: 🧐 Lint Markdown files | ||
uses: DavidAnson/[email protected] | ||
with: | ||
globs: | | ||
**/*.md | ||
!CHANGELOG.md | ||
composer-linting: | ||
timeout-minutes: 4 | ||
runs-on: ${{ matrix.os }} | ||
concurrency: | ||
cancel-in-progress: true | ||
group: composer-linting-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
php-version: | ||
- '8.1' | ||
dependencies: | ||
- locked | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: 🛠️ Setup PHP | ||
uses: shivammathur/[email protected] | ||
with: | ||
php-version: ${{ matrix.php-version }} | ||
extensions: none, ctype, dom, json, mbstring, phar, simplexml, tokenizer, xml, xmlwriter, phar, sockets | ||
ini-values: error_reporting=E_ALL | ||
coverage: none | ||
tools: phive | ||
|
||
- name: 📦 Check out the codebase | ||
uses: actions/[email protected] | ||
|
||
- name: 🛠️ Setup problem matchers | ||
run: | | ||
echo "::add-matcher::${{ runner.tool_cache }}/php.json" | ||
- name: 🤖 Validate composer.json and composer.lock | ||
run: composer validate --ansi --strict | ||
|
||
- name: 🔍 Get composer cache directory | ||
uses: wayofdev/gh-actions/actions/composer/[email protected] | ||
|
||
- name: ♻️ Restore cached dependencies installed with composer | ||
uses: actions/[email protected] | ||
with: | ||
path: ${{ env.COMPOSER_CACHE_DIR }} | ||
key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }} | ||
restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}- | ||
|
||
- name: 📥 Install "${{ matrix.dependencies }}" dependencies with composer | ||
uses: wayofdev/gh-actions/actions/composer/[email protected] | ||
with: | ||
dependencies: ${{ matrix.dependencies }} | ||
|
||
- name: 📥 Install dependencies with phive | ||
uses: wayofdev/gh-actions/actions/phive/[email protected] | ||
with: | ||
phive-home: '.phive' | ||
trust-gpg-keys: '0xC00543248C87FB13,0x033E5F8D801A2F8D,0x2DF45277AEF09A2F' | ||
|
||
- name: 🔍 Run ergebnis/composer-normalize | ||
run: .phive/composer-normalize --ansi --dry-run | ||
|
||
coding-standards: | ||
timeout-minutes: 4 | ||
runs-on: ${{ matrix.os }} | ||
concurrency: | ||
cancel-in-progress: true | ||
group: coding-standards-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
php-version: | ||
- '8.1' | ||
dependencies: | ||
- locked | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: ⚙️ Set git to use LF line endings | ||
run: | | ||
git config --global core.autocrlf false | ||
git config --global core.eol lf | ||
- name: 🛠️ Setup PHP | ||
uses: shivammathur/[email protected] | ||
with: | ||
php-version: ${{ matrix.php-version }} | ||
extensions: none, ctype, dom, json, mbstring, phar, simplexml, tokenizer, xml, xmlwriter, sockets | ||
ini-values: error_reporting=E_ALL | ||
coverage: none | ||
|
||
- name: 📦 Check out the codebase | ||
uses: actions/[email protected] | ||
|
||
- name: 🛠️ Setup problem matchers | ||
run: | | ||
echo "::add-matcher::${{ runner.tool_cache }}/php.json" | ||
- name: 🤖 Validate composer.json and composer.lock | ||
run: composer validate --ansi --strict | ||
|
||
- name: 🔍 Get composer cache directory | ||
uses: wayofdev/gh-actions/actions/composer/[email protected] | ||
|
||
- name: ♻️ Restore cached dependencies installed with composer | ||
uses: actions/[email protected] | ||
with: | ||
path: ${{ env.COMPOSER_CACHE_DIR }} | ||
key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }} | ||
restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}- | ||
|
||
- name: 📥 Install "${{ matrix.dependencies }}" dependencies with composer | ||
uses: wayofdev/gh-actions/actions/composer/[email protected] | ||
with: | ||
dependencies: ${{ matrix.dependencies }} | ||
|
||
- name: 🛠️ Prepare environment | ||
run: make prepare | ||
|
||
- name: 🚨 Run coding standards task | ||
run: composer cs:fix | ||
env: | ||
PHP_CS_FIXER_IGNORE_ENV: true | ||
|
||
- name: 📤 Commit and push changed files back to GitHub | ||
uses: stefanzweifel/[email protected] | ||
with: | ||
commit_message: 'style(php-cs-fixer): lint php files and fix coding standards' | ||
branch: ${{ github.head_ref }} | ||
commit_author: 'github-actions <[email protected]>' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.