diff options
-rw-r--r-- | .github/FUNDING.yml | 12 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.md | 30 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/enhancement.md | 16 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/major-feature-request.md | 24 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/minor-feature-request.md | 25 | ||||
-rw-r--r-- | .github/workflows/cd.yml | 74 | ||||
-rw-r--r-- | .github/workflows/ci.yml | 60 | ||||
-rw-r--r-- | .github/workflows/label-sponsors.yml | 14 | ||||
-rw-r--r-- | .github/workflows/manual-build.yml | 50 |
9 files changed, 0 insertions, 305 deletions
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index d775742..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,12 +0,0 @@ -# These are supported funding model platforms - -github: [tefkah] -patreon: # Replace with a single Patreon username -open_collective: # Replace with a single Open Collective username -ko_fi: # Replace with a single Ko-fi username -tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel -community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry -liberapay: # Replace with a single Liberapay username -issuehunt: # Replace with a single IssueHunt username -otechie: # Replace with a single Otechie username -custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 9bb42c8..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: "[BUG]" -labels: bug -assignees: ThomasFKJorna - ---- - -**Describe the bug** -A clear and concise description of what the bug is. - -**To Reproduce** -Which specific things did you do which lead to said bug? E.g. what did you click, which commands did you call, etc. -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**What browser were you using?** -Firefox/Chrome/Webkit - -**Additional context** -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/enhancement.md b/.github/ISSUE_TEMPLATE/enhancement.md deleted file mode 100644 index 90848c8..0000000 --- a/.github/ISSUE_TEMPLATE/enhancement.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -name: Enhancement -about: Suggest a small enhancement for org-roam-ui. This isn't so much new functionality as much as it is making current functionality a little bit better. -title: "[ENH]" -labels: enhancement -assignees: '' - ---- - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. Try to be descriptive, e.g. "increase the contrast" here instead of "make this look better". -The more descriptive you are the quicker I'll probably get to it! - diff --git a/.github/ISSUE_TEMPLATE/major-feature-request.md b/.github/ISSUE_TEMPLATE/major-feature-request.md deleted file mode 100644 index e47a3e9..0000000 --- a/.github/ISSUE_TEMPLATE/major-feature-request.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -name: Major feature request -about: Suggest an idea which goes beyond the graphing capabilities of ORUI -title: "[MAJOR]" -labels: major feature -assignees: '' - ---- - -**Have you checked whether this feature is not already on the [project board](https://github.com/org-roam/org-roam-ui/projects/2)?** - -No - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** -Add any other context or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/minor-feature-request.md b/.github/ISSUE_TEMPLATE/minor-feature-request.md deleted file mode 100644 index ea6e8d6..0000000 --- a/.github/ISSUE_TEMPLATE/minor-feature-request.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -name: Minor feature request -about: Suggest an idea which expands or improves the current graphing capabilities - of ORUI -title: "[MINOR]" -labels: minor feature -assignees: '' - ---- - -**Have you checked whether this feature is not already on the [project board](https://github.com/org-roam/org-roam-ui/projects/2)?** - -No - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** -Add any other context or screenshots about the feature request here. diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml deleted file mode 100644 index 22e4934..0000000 --- a/.github/workflows/cd.yml +++ /dev/null @@ -1,74 +0,0 @@ ---- -# File : cd.yml - -name: 'cd' -on: - push: - branches: [main] -defaults: - run: - shell: 'bash' -jobs: - changes: - runs-on: 'ubuntu-latest' - outputs: - ts: ${{ steps.filter.outputs.ts }} - steps: - - uses: actions/checkout@v2 - - name: '[check if build necessary]' - uses: dorny/paths-filter@v2 - id: filter - with: - filters: | - ts: - - '**.ts' - - '**.tsx' - - '**.json' - build-deploy: - name: '[cd|build-deploy]' - runs-on: 'ubuntu-latest' - needs: changes - if: ${{ needs.changes.outputs.ts == 'true' }} - steps: - - name: '[checkout] ${{ github.repository }} project' - uses: 'actions/checkout@v2' - with: - repository: '${{ github.repository }}' - - name: '[setup node]' - uses: 'actions/setup-node@v2' - with: - node-version: '16' - - name: '[lint]' - run: | - echo TBA some linting - - name: '[test]' - run: | - echo TBA some testing - - name: '[build]' - run: | - git config --global url."https://github.com/".insteadOf ssh://[email protected]/ - git config --global url."https://".insteadOf git:// - git config --global url."https://".insteadOf ssh:// - yarn install - yarn run build - yarn run export - - name: '[Add GitHub Sponsors to Readme]' - uses: JamesIves/[email protected] - with: - token: ${{secrets.PAT}} - file: 'README.md' - minimum: 500 - - - name: '[commit changes]' - run: | - git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" - git config --local user.name "github-actions[bot]" - git add . - git commit -m "chore: build" -a - - name: '[push changes]' - uses: ad-m/github-push-action@master - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - branch: ${{ github.ref }} -... -# End of cd.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 4d97cf4..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,60 +0,0 @@ ---- -# File : ci.yml - -name: 'ci' -on: - push: - branches: - - '**' - - '!main' - pull_request: - workflow_dispatch: -defaults: - run: - shell: 'bash' -jobs: - changes: - runs-on: 'ubuntu-latest' - outputs: - ts: ${{ steps.filter.outputs.ts }} - steps: - - uses: actions/checkout@v2 - - name: '[check if build necessary]' - uses: dorny/paths-filter@v2 - id: filter - with: - filters: | - ts: - - '**.ts' - - '**.tsx' - - '**.json' - lint-test-build: - name: '[ci|lint-test-build]' - runs-on: 'ubuntu-latest' - needs: changes - if: ${{ needs.changes.outputs.ts == 'true' }} - steps: - - name: '[checkout] ${{ github.repository }} project' - uses: 'actions/checkout@v2' - with: - repository: '${{ github.repository }}' - - name: '[setup node]' - uses: 'actions/setup-node@v2' - with: - node-version: '16' - - name: '[lint]' - run: | - echo TBA some linting - - name: '[test]' - run: | - echo TBA some testing - - name: '[build]' - run: | - git config --global url."https://github.com/".insteadOf ssh://[email protected]/ - git config --global url."https://".insteadOf git:// - git config --global url."https://".insteadOf ssh:// - yarn install - yarn run build - yarn run export -... -# End of ci.yml diff --git a/.github/workflows/label-sponsors.yml b/.github/workflows/label-sponsors.yml deleted file mode 100644 index 10abb72..0000000 --- a/.github/workflows/label-sponsors.yml +++ /dev/null @@ -1,14 +0,0 @@ -name: Label sponsors -on: - pull_request: - types: [opened] - issues: - types: [opened] -jobs: - build: - name: is-sponsor-label - runs-on: ubuntu-latest - steps: - - uses: JasonEtco/is-sponsor-label-action@v1 - env: - GITHUB_TOKEN: ${{ secrets.PAT }} diff --git a/.github/workflows/manual-build.yml b/.github/workflows/manual-build.yml deleted file mode 100644 index f2951ab..0000000 --- a/.github/workflows/manual-build.yml +++ /dev/null @@ -1,50 +0,0 @@ ---- -# File : cd.yml - -name: 'cd' -on: - workflow_dispatch: -defaults: - run: - shell: 'bash' -jobs: - build-deploy: - name: '[cd|build-deploy]' - runs-on: 'ubuntu-latest' - steps: - - name: '[checkout] ${{ github.repository }} project' - uses: 'actions/checkout@v2' - with: - repository: '${{ github.repository }}' - - name: '[setup node]' - uses: 'actions/setup-node@v2' - with: - node-version: '16' - - name: '[build]' - run: | - git config --global url."https://github.com/".insteadOf ssh://[email protected]/ - git config --global url."https://".insteadOf git:// - git config --global url."https://".insteadOf ssh:// - npm install - npm run build - npm run export - - name: '[Add GitHub Sponsors to Readme]' - uses: JamesIves/[email protected] - with: - token: ${{secrets.PAT}} - file: 'README.md' - minimum: 500 - - - name: '[commit changes]' - run: | - git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" - git config --local user.name "github-actions[bot]" - git add . - git commit -m "chore: build" -a - - name: '[push changes]' - uses: ad-m/github-push-action@master - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - branch: ${{ github.ref }} -... -# End of cd.yml |