Skip to content
Open
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/release-prep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -304,29 +304,6 @@ jobs:
brew tap miniscruff/changie https://github.com/miniscruff/changie
brew install changie

- name: "Set json File Name"
id: json_file
run: |
echo "name=output_$GITHUB_RUN_ID.json" >> $GITHUB_OUTPUT

- name: "Get Core Team Membership"
run: |
gh api -H "Accept: application/vnd.github+json" orgs/dbt-labs/teams/core-group/members > ${{ steps.json_file.outputs.name }}
env:
GH_TOKEN: ${{ secrets.IT_TEAM_MEMBERSHIP }}

- name: "Set Core Team Membership for Changie Contributors exclusion"
id: set_team_membership
run: |
team_list=$(jq -r '.[].login' ${{ steps.json_file.outputs.name }})
echo $team_list
team_list_single=$(echo $team_list | tr '\n' ' ')
echo "CHANGIE_CORE_TEAM=$team_list_single" >> $GITHUB_ENV

- name: "Delete the json File"
run: |
rm ${{ steps.json_file.outputs.name }}

- name: "Generate Release Changelog"
if: needs.audit-changelog.outputs.exists == 'false'
run: |
Expand Down
Loading