- introduce new step, showcasing generation of changelog for an external configuration

This commit is contained in:
Mike Penz
2020-10-18 09:39:18 +02:00
parent 5f251caedb
commit 4a8c907e76
+26 -6
View File
@@ -10,10 +10,13 @@ jobs:
if: github.event_name == 'pull_request' if: github.event_name == 'pull_request'
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - name: Checkout
- run: | uses: actions/checkout@v2
- name: Install NPM
run: |
npm install npm install
- run: | - name: Run NPM
run: |
npm run all npm run all
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -22,10 +25,12 @@ jobs:
if: github.event_name == 'pull_request' if: github.event_name == 'pull_request'
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
# the below actions use the local state of the action. please replace `./` with `mikepenz/release-changelog-builder-action@{latest-release}`
# Showcases how to use the action without a prior checkout
# Won't support providing a configuration file, as no checkout was done # Won't support providing a configuration file, as no checkout was done
- name: "Configuration without Checkout" - name: "Configuration without Checkout"
id: without_checkout id: without_checkout
uses: mikepenz/release-changelog-builder-action@develop uses: ./
with: with:
toTag: "v0.0.3" toTag: "v0.0.3"
env: env:
@@ -36,9 +41,8 @@ jobs:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
with:
fetch-depth: 0 # Checkout full depth so tags can be discovered automatically if not specified
# Showcase the most minimal configuration possible
- name: "Minimal Configuration" - name: "Minimal Configuration"
id: minimal_release id: minimal_release
uses: ./ uses: ./
@@ -48,6 +52,7 @@ jobs:
- name: Echo Minimal Configuration Changelog - name: Echo Minimal Configuration Changelog
run: echo "${{steps.minimal_release.outputs.changelog}}" run: echo "${{steps.minimal_release.outputs.changelog}}"
# Showcases a more complex configuration, providing a configuration, and specifically referencing owner, repo, from and to tag
- name: "Complex Configuration" - name: "Complex Configuration"
id: complex_release id: complex_release
uses: ./ uses: ./
@@ -62,6 +67,21 @@ jobs:
- name: Echo Complex Configuration Changelog - name: Echo Complex Configuration Changelog
run: echo "${{steps.complex_release.outputs.changelog}}" run: echo "${{steps.complex_release.outputs.changelog}}"
# Showcases the capability to generate the changelog for an external repository provided
- name: "External Repo Configuration"
id: external_changelog
uses: ./
with:
configuration: "configs/configuration_complex.json"
owner: "mikepenz"
repo: "MaterialDrawer"
fromTag: "v8.1.0"
toTag: "v8.1.6"
token: ${{ secrets.PERSONAL_TOKEN }}
- name: Echo External Repo Configuration Changelog
run: echo "${{steps.external_changelog.outputs.changelog}}"
release: release:
if: startsWith(github.ref, 'refs/tags/') if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest runs-on: ubuntu-latest