Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
arsalan-dev-engineer committed Aug 3, 2024
1 parent 8b2df6b commit dcf0a14
Showing 1 changed file with 0 additions and 26 deletions.
26 changes: 0 additions & 26 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,29 +55,3 @@ jobs:
env:
# token for accessing the GitHub API
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

# job to generate and upload a changelog
generate-changelog:
name: "3. Generate Changelog"
# depends on the completion of the security-scan job
needs: security-scan
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
# fetch all history for all branches and tags
fetch-depth: 0
- name: Generate Changelog
run: |
# generate a changelog based on commit history
git log --pretty=format:"* %h - %an, %ar : %s" > CHANGELOG.md
# output the changelog to the log
cat CHANGELOG.md
- name: Upload Changelog as Artifact
uses: actions/upload-artifact@v3
with:
# name of the artifact
name: changelog
# path to the file to be uploaded
path: CHANGELOG.md

0 comments on commit dcf0a14

Please sign in to comment.