Fusion Project Portal Release (#426) #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Push Changelog | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
update-changelog: | |
name: Update changelog in docs | |
runs-on: ubuntu-latest | |
env: | |
commit-author: bot | |
author-email: [email protected] | |
commit-message: "docs: update changlog" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Pushes Changelog File | |
uses: dmnemec/[email protected] | |
env: | |
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }} | |
with: | |
source_file: "CHANGELOG.md" | |
destination_repo: "equinor/fusion-project-portal-internal" | |
destination_folder: "/docs/documentation/" | |
user_email: ${{ env.author-email}} | |
user_name: ${{ env.commit-author}} | |
commit_message: ${{ env.commit-message}} |