Skip to content

Commit

Permalink
Merge remote-tracking branch 'main_repo/main' into scala
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisKheng committed Dec 18, 2022
2 parents d0c1164 + f040bfd commit 158db2a
Show file tree
Hide file tree
Showing 462 changed files with 20,949 additions and 4,431 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/build-readme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,23 @@ jobs:
Build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16.x]

steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
fetch-depth: 1

- name: Use Node.js (dependency)
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
node-version: 16

- name: Completion Table
run: node ./.github/workflows/updateCompletionTable.js;

- name: Check for modified files
id: git-check
run: echo ::set-output name=modified::$(if git diff-index --quiet HEAD --; then echo "false"; else echo "true"; fi)
run: echo modified=$(if git diff-index --quiet HEAD --; then echo "false"; else echo "true"; fi) >> $GITHUB_OUTPUT

- name: Push
if: steps.git-check.outputs.modified == 'true'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'Stale issue message'
stale-pr-message: 'Stale pull request message'
stale-issue-label: 'no-issue-activity'
stale-pr-label: 'no-pr-activity'
stale-issue-label: 'stale'
stale-pr-label: 'stale'
days-before-stale: 30
days-before-close: 7
days-before-issue-stale: 90
days-before-issue-stale: 900
exempt-milestones: true
exempt-pr-labels: 'pending'
599 changes: 58 additions & 541 deletions .github/workflows/updateCompletionTable.js

Large diffs are not rendered by default.

Loading

0 comments on commit 158db2a

Please sign in to comment.