Skip to content
Merged
Show file tree
Hide file tree
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: 23 additions & 0 deletions .github/workflows/auto-assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Auto Assign PR Author

on:
pull_request:
types: [opened, reopened, ready_for_review]

jobs:
auto-assign:
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- name: Auto assign PR author
uses: actions/github-script@v7
with:
script: |
await github.rest.issues.addAssignees({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
assignees: [context.payload.pull_request.user.login]
});

3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Build
on:
pull_request:

permissions:
contents: read

jobs:
build:
name: Build
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ on:
branches:
- main

permissions:
contents: read

jobs:
package:
name: Package
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
jobs:
package:
name: Package
permissions:
contents: read
uses: ./.github/workflows/package.yml
secrets: inherit
with:
Expand All @@ -17,6 +19,8 @@ jobs:
name: Release
runs-on: ubuntu-latest
needs: package
permissions:
contents: write
environment: prod
steps:
# Check out current repository
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
"Other"
],
"bugs": {
"url": "https://github.com/ls1intum/scorpio/issues"
"url": "https://github.com/EduIDE/scorpio/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ls1intum/scorpio.git"
"url": "https://github.com/EduIDE/scorpio.git"
},
"publisher": "tum-aet",
"main": "./dist/extension.js",
Expand Down