diff --git a/.github/workflows/commit-lint.yml b/.github/workflows/commit-lint.yml index 44b9e8c..dc44af2 100644 --- a/.github/workflows/commit-lint.yml +++ b/.github/workflows/commit-lint.yml @@ -1,7 +1,7 @@ name: Commit Lint on: - workflow_call: # Trigger pro reusable workflow + workflow_call: inputs: branch: required: false @@ -21,4 +21,7 @@ on: jobs: lint-commits: - uses: gouef/github-lib-template/.github/workflows/shared_commit-lint.yml@main + runs-on: ubuntu-latest + steps: + - name: Commit lint + uses: gouef/commit-lint-action@main diff --git a/.github/workflows/contributors.yml b/.github/workflows/contributors.yml index e1ec334..f905e18 100644 --- a/.github/workflows/contributors.yml +++ b/.github/workflows/contributors.yml @@ -1,18 +1,6 @@ name: Generate contributors on: - workflow_dispatch: - inputs: - excludeBot: - description: "Exclude actions@github.com from contributors" - required: false - type: boolean - default: false - notGenerateContributorsMd: - required: false - type: boolean - default: false - description: "Not commit CONTRIBUTORS.md ?" schedule: - cron: '0 0 * * 1' pull_request: @@ -28,8 +16,10 @@ on: - bugfix/** jobs: - update-contributors: - uses: gouef/github-lib-template/.github/workflows/shared_contributors.yml@main - with: - excludeBot: ${{ inputs.excludeBot || false}} - notGenerateContributorsMd: ${{ inputs.notGenerateContributorsMd || false }} + generate-contributors: + runs-on: ubuntu-latest + steps: + - name: Generate contributors + uses: gouef/create-contributors-action@main + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8acf2fb..030fe71 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,6 +17,13 @@ on: jobs: call-release: - uses: gouef/github-lib-template/.github/workflows/shared_release.yml@main - with: - branch: ${{ github.ref_name }} \ No newline at end of file + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - name: Create release + uses: gouef/release-action@main + with: + branch: ${{ github.ref_name }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/docs/index.md b/docs/extensions.md similarity index 100% rename from docs/index.md rename to docs/extensions.md