Skip to content
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
4 changes: 4 additions & 0 deletions .github/workflows/create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ on:
push:
tags:
- '*'

permissions:
contents: read

jobs:
tag:
runs-on: ubuntu-latest
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/phpcs_on_pull_request.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
on: pull_request
name: Inspections

permissions:
contents: read
pull-requests: write

jobs:
runPHPCSInspection:
name: Run PHPCS inspection
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

permissions:
contents: read

jobs:
Run-wpe2e-TestCase:
# The type of runner that the job will run on
Expand Down
Loading