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.
1 parent e3443ba commit cc99cdaCopy full SHA for cc99cda
.github/workflows/pull-request.yaml
@@ -10,7 +10,7 @@ permissions:
10
11
jobs:
12
build:
13
- runs-on: ["self-hosted"]
+ runs-on: ubuntu-latest
14
steps:
15
- uses: actions/checkout@v3
16
with:
@@ -60,7 +60,7 @@ jobs:
60
uses: ./ # Uses an action in the root directory
61
62
operation: 'kebabcase'
63
- input-string: 'Hello World'
+ input-string: 'Hello World feature/UI-123_my-feature'
64
65
- name: Test Action DNS Subdomain
66
id: dns-subdomain
@@ -89,7 +89,7 @@ jobs:
89
core.setFailed('Uppercase test failed')
90
}
91
92
- if('${{steps.kebabcase.outputs.output-string}}' !== 'hello-world') {
+ if('${{steps.kebabcase.outputs.output-string}}' !== 'hello-world-feature-ui-123-my-feature') {
93
core.setFailed('Kebabcase test failed')
94
95
0 commit comments