Skip to content

Commit

Permalink
test: use feat/pdm-detect branch for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
noirbizarre committed Dec 3, 2024
1 parent c373746 commit 2d70d0a
Show file tree
Hide file tree
Showing 15 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion pdm/doc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
doc:
runs-on: ubuntu-latest
steps:
- uses: LedgerHQ/actions/pdm/doc@main
- uses: LedgerHQ/actions/pdm/doc@feat/pdm-detect
```
## Inputs
Expand Down
4 changes: 2 additions & 2 deletions pdm/doc/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ outputs:
runs:
using: "composite"
steps:
- uses: LedgerHQ/actions/pdm/doc/build@main
- uses: LedgerHQ/actions/pdm/doc/build@feat/pdm-detect
with:
init: ${{ inputs.init }}
python-version: ${{ inputs.python-version }}
pypi-token: ${{ inputs.pypi-token }}
openapi: ${{ inputs.openapi }}
site: ${{ inputs.site }}
- uses: LedgerHQ/actions/pdm/doc/publish@main
- uses: LedgerHQ/actions/pdm/doc/publish@feat/pdm-detect
id: publish
with:
init: false
Expand Down
4 changes: 2 additions & 2 deletions pdm/doc/build/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build-doc:
runs-on: ubuntu-latest
steps:
- uses: LedgerHQ/actions/pdm/doc/build@main
- uses: LedgerHQ/actions/pdm/doc/build@feat/pdm-detect
```
> [!IMPORTANT]
Expand All @@ -24,7 +24,7 @@ jobs:
> contents: read
> id-token: write
> steps:
> - uses: LedgerHQ/actions/pdm/build-doc@main
> - uses: LedgerHQ/actions/pdm/build-doc@feat/pdm-detect
> env:
> JFROG_REPOSITORY: my-team-repository
> ```
Expand Down
4 changes: 2 additions & 2 deletions pdm/doc/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ runs:
using: composite
steps:
- name: Clone and install dependencies
uses: LedgerHQ/actions/pdm/init@main
uses: LedgerHQ/actions/pdm/init@feat/pdm-detect
id: init
if: inputs.init == 'true'
with:
Expand Down Expand Up @@ -135,7 +135,7 @@ runs:
- name: Generate the OpenAPI diff
if: success() && steps.init.outputs.is_pr == 'true' && inputs.openapi == 'true'
continue-on-error: true # OpenAPI diff is optional
uses: LedgerHQ/actions/openapi/diff@main
uses: LedgerHQ/actions/openapi/diff@feat/pdm-detect
with:
base: openapi.base.yaml
head: openapi.head.yaml
4 changes: 2 additions & 2 deletions pdm/doc/publish/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
publish-doc:
runs-on: ubuntu-latest
steps:
- uses: LedgerHQ/actions/pdm/doc/publish@main
- uses: LedgerHQ/actions/pdm/doc/publish@feat/pdm-detect
```
> [!IMPORTANT]
Expand All @@ -24,7 +24,7 @@ jobs:
> contents: read
> id-token: write
> steps:
> - uses: LedgerHQ/actions/pdm/publish-doc@main
> - uses: LedgerHQ/actions/pdm/publish-doc@feat/pdm-detect
> env:
> JFROG_REPOSITORY: my-team-repository
> ```
Expand Down
2 changes: 1 addition & 1 deletion pdm/doc/publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ runs:
steps:
- name: Clone and install dependencies
if: inputs.init == 'true'
uses: LedgerHQ/actions/pdm/init@main
uses: LedgerHQ/actions/pdm/init@feat/pdm-detect
with:
group: ${{ inputs.group }}
exclude-group: ${{ inputs.exclude-group }}
Expand Down
4 changes: 2 additions & 2 deletions pdm/docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: LedgerHQ/actions/pdm/docker@main
- uses: LedgerHQ/actions/pdm/docker@feat/pdm-detect
```
> [!IMPORTANT]
Expand All @@ -28,7 +28,7 @@ jobs:
> id-token: write
> attestations: write
> steps:
> - uses: LedgerHQ/actions/pdm/docker@main
> - uses: LedgerHQ/actions/pdm/docker@feat/pdm-detect
> env:
> JFROG_REPOSITORY: my-team-repository
> JFROG_DOCKER_REPOSITORY: my-team-docker-repository
Expand Down
4 changes: 2 additions & 2 deletions pdm/init/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
init:
runs-on: ubuntu-latest
steps:
- uses: LedgerHQ/actions/pdm/init@main
- uses: LedgerHQ/actions/pdm/init@feat/pdm-detect
with:
group: test
```
Expand All @@ -26,7 +26,7 @@ jobs:
> contents: read
> id-token: write
> steps:
> - uses: LedgerHQ/actions/pdm/init@main
> - uses: LedgerHQ/actions/pdm/init@feat/pdm-detect
> with:
> group: test
> env:
Expand Down
2 changes: 1 addition & 1 deletion pdm/lint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: LedgerHQ/actions/pdm/lint@main
- uses: LedgerHQ/actions/pdm/lint@feat/pdm-detect
```
## Inputs
Expand Down
2 changes: 1 addition & 1 deletion pdm/meta/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
meta:
runs-on: ubuntu-latest
steps:
- uses: LedgerHQ/actions/pdm/meta@main
- uses: LedgerHQ/actions/pdm/meta@feat/pdm-detect
```
## Inputs
Expand Down
4 changes: 2 additions & 2 deletions pdm/release/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: LedgerHQ/actions/pdm/release@main
- uses: LedgerHQ/actions/pdm/release@feat/pdm-detect
```
> [!IMPORTANT]
Expand All @@ -36,7 +36,7 @@ jobs:
> id-token: write
> attestations: write
> steps:
> - uses: LedgerHQ/actions/pdm/release@main
> - uses: LedgerHQ/actions/pdm/release@feat/pdm-detect
> env:
> JFROG_REPOSITORY: my-team-repository
> JFROG_DOCKER_REPOSITORY: my-team-docker-repository
Expand Down
8 changes: 4 additions & 4 deletions pdm/release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ runs:
fi
shell: bash
- name: Clone and install dependencies
uses: LedgerHQ/actions/pdm/init@main
uses: LedgerHQ/actions/pdm/init@feat/pdm-detect
id: meta
with:
group: ${{ inputs.group }}
Expand Down Expand Up @@ -176,7 +176,7 @@ runs:
shell: bash

- name: Docker image
uses: LedgerHQ/actions/pdm/docker@main
uses: LedgerHQ/actions/pdm/docker@feat/pdm-detect
id: docker
if: steps.meta.outputs.has_docker == 'true'
with:
Expand All @@ -196,7 +196,7 @@ runs:
shell: bash

- name: Extra Docker image
uses: LedgerHQ/actions/pdm/docker@main
uses: LedgerHQ/actions/pdm/docker@feat/pdm-detect
id: extra-docker
if: inputs.extra-docker
with:
Expand All @@ -219,7 +219,7 @@ runs:
id: doc
if: steps.meta.outputs.has_docs == 'true'
continue-on-error: true # Can be manually published after
uses: LedgerHQ/actions/pdm/doc@main
uses: LedgerHQ/actions/pdm/doc@feat/pdm-detect
with:
version: ${{ env.REVISION }}
pypi-token: ${{ inputs.pypi-token }}
Expand Down
2 changes: 1 addition & 1 deletion pdm/release/pre/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
pre:
runs-on: ubuntu-latest
steps:
- uses: LedgerHQ/actions/pdm/pre@main
- uses: LedgerHQ/actions/pdm/pre@feat/pdm-detect
with:
workflow: check.yml
github-token: ${{ github.token }}
Expand Down
4 changes: 2 additions & 2 deletions pdm/test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: LedgerHQ/actions/pdm/test@main
- uses: LedgerHQ/actions/pdm/test@feat/pdm-detect
```
> [!IMPORTANT]
Expand All @@ -24,7 +24,7 @@ jobs:
> contents: read
> id-token: write
> steps:
> - uses: LedgerHQ/actions/pdm/test@main
> - uses: LedgerHQ/actions/pdm/test@feat/pdm-detect
> env:
> JFROG_REPOSITORY: my-team-repository
> ```
Expand Down
6 changes: 3 additions & 3 deletions pdm/test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ runs:
- name: Clone and install dependencies
if: inputs.init == 'true'
id: meta
uses: LedgerHQ/actions/pdm/init@main
uses: LedgerHQ/actions/pdm/init@feat/pdm-detect
with:
python-version: ${{ inputs.python-version }}
group: ${{ inputs.group }}
Expand Down Expand Up @@ -108,7 +108,7 @@ runs:
- name: Upload Allure results
if: steps.check-allure.outputs.has_allure
id: allure-upload
uses: LedgerHQ/actions/allure/upload@main
uses: LedgerHQ/actions/allure/upload@feat/pdm-detect
with:
url: ${{ env.ALLURE_URL }}
username: ${{ env.ALLURE_USERNAME }}
Expand Down Expand Up @@ -196,7 +196,7 @@ runs:
- name: Generate Allure report
if: steps.allure-report-meta.outputs.uuids && !inputs.matrix-id
id: allure-generate
uses: LedgerHQ/actions/allure/generate@main
uses: LedgerHQ/actions/allure/generate@feat/pdm-detect
with:
url: ${{ env.ALLURE_URL }}
username: ${{ env.ALLURE_USERNAME }}
Expand Down

0 comments on commit 2d70d0a

Please sign in to comment.