Skip to content

Commit

Permalink
Added caw automated tests (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
pookmish authored Sep 6, 2023
1 parent 634e414 commit a6183be
Show file tree
Hide file tree
Showing 13 changed files with 406 additions and 444 deletions.
148 changes: 0 additions & 148 deletions .circleci/config.yml

This file was deleted.

8 changes: 8 additions & 0 deletions .github/auto-label.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"rules": {
"patch": ["*.info.yml"],
"frontend": ["*.js", "*.scss", "*.css", "*.twig", ".theme"],
"backend": ["*.php", "*.module"],
"ci": [".circleci", "blt", ".github"]
}
}
28 changes: 28 additions & 0 deletions .github/workflows/label.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# 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

name: PR Labeler
on:
pull_request:
types: [opened, synchronize]
jobs:
pr-labeler:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: codelytv/pr-size-labeler@v1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
xs_max_size: '100'
s_max_size: '500'
m_max_size: '1000'
l_max_size: '3000'
fail_if_xl: 'false'
message_if_xl: ''
- uses: banyan/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading

0 comments on commit a6183be

Please sign in to comment.