Skip to content
Snippets Groups Projects
Commit fc1d7009 authored by GianlucaOberreit's avatar GianlucaOberreit Committed by Gianluca OBERREIT
Browse files

Update committee_creation.yml

parent d2e1e277
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,13 @@ jobs:
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Switch to New Branch
run: |
branch_name=${{ github.ref }}
git fetch origin $branch_name:$branch_name
git checkout $branch_name
shell: bash
- name: Generate Committee File
run: |
......@@ -19,11 +26,15 @@ jobs:
sed "s/class example/class $branch_name/g" src/Committees/example.py > "src/Committees/${branch_name}.py"
shell: bash
- name: Switch to New Branch
- name: Commit and Push Changes
run: |
branch_name=${{ github.ref }}
git fetch origin $branch_name:$branch_name
git checkout $branch_name
branch_name=${branch_name#refs/heads/comm/}
git config --global user.email "actions@github.com"
git config --global user.name "GitHub Actions"
git add "path/to/subdirectory/${branch_name}.py"
git commit -m "Add ${branch_name}.py"
git push origin $branch_name
shell: bash
- name: Create Committee Team
......@@ -35,15 +46,4 @@ jobs:
curl -X POST \
-H "Authorization: Bearer $GITHUB_TOKEN" \
-d '{"name":"'$branch_name'","privacy":"closed"}' \
https://api.github.com/orgs/YOUR_ORG/teams
- name: Create Team
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
branch_name=${{ github.ref }}
branch_name=${branch_name#refs/heads/comm/}
curl -X POST \
-H "Authorization: Bearer $GITHUB_TOKEN" \
-d '{"name":"'$branch_name'","privacy":"closed"}' \
https://api.github.com/orgs/YOUR_ORG/teams
https://api.github.com/orgs/Telegram-BX-Bot/teams
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment