forked from pyrevitlabs/pyRevit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add custom slash commands for isssues
- Loading branch information
Andrea Ghensi
committed
Mar 30, 2024
1 parent
f751148
commit ddfbc44
Showing
3 changed files
with
47 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
issues: | ||
more-info: | ||
label: | ||
- needs-more-info | ||
|
||
install-fix: | ||
comment: > | ||
Hi @{{ author }}, Thy these steps: | ||
1. Uninstall pyRevit | ||
2. Delete C:\ProgramData and %AppData%\ pyRevit and pyrevit-master folders | ||
3. Move all Revit addins to a temporary location. Usual addins locations include: | ||
- %AppData%\Autodesk\Revit\Addins<year> | ||
- %AppData%\Autodesk\ApplicationPlugins | ||
- %ProgramData%\Autodesk\Revit\Addins<year> | ||
- %ProgramData%\Autodesk\ApplicationPlugins | ||
4. [Reboot computer] | ||
5. Reinstall pyRevit | ||
6. Started each version of Revit confirming pyRevit successfully compiled at startup. | ||
7. Move all Revit addins that were moved in step 3 back to their original location. | ||
You may want to add them one at a time and start a revit session everytime to figure out which ones are causing the issue. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: issues-manager | ||
on: | ||
issue_comment: | ||
types: [created] | ||
|
||
jobs: | ||
issue_commented: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Custom Slash Commands | ||
uses: wow-actions/[email protected] | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
CONFIG_FILE: .github/slash-commands.yml | ||
|
||
- name: Pending Response Follow Up | ||
uses: siegerts/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
pending-response-label: needs-more-info |
This file was deleted.
Oops, something went wrong.