We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a832ecf + 030a883 commit 4c2fd38Copy full SHA for 4c2fd38
2 files changed
.github/workflows/functional-tests.yml
@@ -7,6 +7,9 @@ on:
7
branches: [main]
8
workflow_dispatch:
9
10
+permissions:
11
+ contents: read
12
+
13
jobs:
14
functional-tests:
15
name: Functional Tests (Magento 2.4.8, PHP 8.4)
.github/workflows/label.yml
@@ -0,0 +1,22 @@
1
+# This workflow will triage pull requests and apply a label based on the
2
+# paths that are modified in the pull request.
3
+#
4
+# To use this workflow, you will need to set up a .github/labeler.yml
5
+# file with configuration. For more information, see:
6
+# https://github.com/actions/labeler
+name: Labeler
+on: [pull_request_target]
+jobs:
+ label:
+ runs-on: ubuntu-latest
+ permissions:
16
17
+ pull-requests: write
18
19
+ steps:
20
+ - uses: actions/labeler@v4
21
+ with:
22
+ repo-token: "${{ secrets.GITHUB_TOKEN }}"
0 commit comments