-
-
Notifications
You must be signed in to change notification settings - Fork 332
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/centerofci/mathesar into …
…form-builder
- Loading branch information
Showing
61 changed files
with
2,125 additions
and
790 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,55 @@ | ||
centerofci/mathesar-ansible: | ||
- .github/actions/project_update/ | ||
- .github/workflows/add-to-project.yml | ||
- .github/workflows/toc.yml | ||
- .github/workflows/stale.yml | ||
- .github/workflows/update-project-on-issue-assign.yml | ||
- .github/workflows/update-project-on-issue-close.yml | ||
- .github/workflows/update-project-on-issue-edit.yml | ||
- .github/workflows/update-project-on-issue-label.yml | ||
- .github/workflows/update-project-on-pr-edit.yml | ||
- .github/workflows/update-project-on-pr-label.yml | ||
centerofci/mathesar-design: | ||
- .github/actions/project_update/ | ||
- .github/workflows/add-to-project.yml | ||
- .github/workflows/toc.yml | ||
- .github/workflows/stale.yml | ||
- .github/workflows/update-project-on-issue-assign.yml | ||
- .github/workflows/update-project-on-issue-close.yml | ||
- .github/workflows/update-project-on-issue-edit.yml | ||
- .github/workflows/update-project-on-issue-label.yml | ||
- .github/workflows/update-project-on-pr-edit.yml | ||
- .github/workflows/update-project-on-pr-label.yml | ||
centerofci/mathesar-private-notes: | ||
- .github/actions/project_update/ | ||
- .github/workflows/add-to-project.yml | ||
- .github/workflows/toc.yml | ||
- .github/workflows/stale.yml | ||
- .github/workflows/update-project-on-issue-assign.yml | ||
- .github/workflows/update-project-on-issue-close.yml | ||
- .github/workflows/update-project-on-issue-edit.yml | ||
- .github/workflows/update-project-on-issue-label.yml | ||
- .github/workflows/update-project-on-pr-edit.yml | ||
- .github/workflows/update-project-on-pr-label.yml | ||
centerofci/mathesar-scripts: | ||
- .github/actions/project_update/ | ||
- .github/workflows/add-to-project.yml | ||
- .github/workflows/toc.yml | ||
- .github/workflows/stale.yml | ||
- .github/workflows/update-project-on-issue-assign.yml | ||
- .github/workflows/update-project-on-issue-close.yml | ||
- .github/workflows/update-project-on-issue-edit.yml | ||
- .github/workflows/update-project-on-issue-label.yml | ||
- .github/workflows/update-project-on-pr-edit.yml | ||
- .github/workflows/update-project-on-pr-label.yml | ||
centerofci/mathesar-wiki: | ||
- .github/actions/project_update/ | ||
- .github/workflows/add-to-project.yml | ||
- .github/workflows/toc.yml | ||
- .github/workflows/stale.yml | ||
- .github/workflows/update-project-on-issue-assign.yml | ||
- .github/workflows/update-project-on-issue-close.yml | ||
- .github/workflows/update-project-on-issue-edit.yml | ||
- .github/workflows/update-project-on-issue-label.yml | ||
- .github/workflows/update-project-on-pr-edit.yml | ||
- .github/workflows/update-project-on-pr-label.yml |
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 |
---|---|---|
|
@@ -47,7 +47,7 @@ jobs: | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | ||
restore-keys: ${{ runner.os }}-node- | ||
- run: npm install | ||
- uses: oke-py/[email protected].0 | ||
- uses: oke-py/[email protected].2 | ||
with: | ||
audit_level: moderate | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
|
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,16 @@ | ||
name: Sync GitHub workflows to other repos | ||
on: | ||
push: | ||
branches: | ||
- master | ||
workflow_dispatch: | ||
jobs: | ||
sync_workflows: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@master | ||
- name: Run GitHub file sync | ||
uses: BetaHuhn/repo-file-sync-action@v1 | ||
with: | ||
GH_PAT: ${{secrets.MATHESAR_ORG_GITHUB_TOKEN}} |
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,36 @@ | ||
name: Update project on issue assignment | ||
on: | ||
issues: | ||
types: [assigned, unassigned] | ||
|
||
jobs: | ||
update_project_on_issue_assign: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.9' | ||
|
||
- name: Install dependencies | ||
run: | | ||
cd .github/actions/project_update/ | ||
pip install -r requirements.txt | ||
- name: Update priority for assigned issues | ||
if: ${{ github.event.issue.assignees[0] != null }} | ||
run: | | ||
cd .github/actions/project_update/ | ||
python project_update.py ${{ github.event.issue.node_id }} --priority Active | ||
env: | ||
MATHESAR_ORG_GITHUB_TOKEN: ${{secrets.MATHESAR_ORG_GITHUB_TOKEN}} | ||
|
||
- name: Update priority for non-assigned issues | ||
if: ${{ github.event.issue.assignees[0] == null }} | ||
run: | | ||
cd .github/actions/project_update/ | ||
python project_update.py ${{ github.event.issue.node_id }} --priority Backlog | ||
env: | ||
MATHESAR_ORG_GITHUB_TOKEN: ${{secrets.MATHESAR_ORG_GITHUB_TOKEN}} |
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
Oops, something went wrong.