Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Github Workflow Repository Dispatcher for atlan repo #2741

Merged
merged 1 commit into from
Jan 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 0 additions & 23 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,26 +117,3 @@ jobs:
uses: github/codeql-action/[email protected]
with:
sarif_file: 'trivy-image-results.sarif'

- name: Check out into atlan repo
uses: actions/checkout@v2
with:
ref: ${{ steps.get_branch.outputs.branch }}
repository: atlanhq/atlan
token: ${{ secrets.my_pat }}

- name: Add Changelog
run: |
mkdir -p gitlog
echo "- ${{ github.event.head_commit.message }}">>gitlog/${{ github.event.repository.name }}.txt
chmod +x ./scripts/create_changelog.sh
./scripts/create_changelog.sh
- name: Commit changes
uses: EndBug/add-and-commit@v7
with:
branch: ${{ steps.get_branch.outputs.branch }}
author_name: atlan-ci
author_email: [email protected]
message: '${{ github.event.repository.name }}'
default_author: user_info
push: origin ${{ steps.get_branch.outputs.branch }}