Skip to content

Commit 656cb60

Browse files
authored
Merge branch 'stdlib-js:develop' into accessor-gsumkbn
2 parents 5569287 + 7456e9f commit 656cb60

File tree

311 files changed

+3526
-2343
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

311 files changed

+3526
-2343
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,5 +117,5 @@ body:
117117
options:
118118
- label: Read and understood the [Code of Conduct](https://github.com/stdlib-js/stdlib/blob/develop/CODE_OF_CONDUCT.md).
119119
required: true
120-
- label: Searched for existing issues and pull requests.
120+
- label: Searched for existing issues and pull requests.
121121
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818

1919
contact_links:
2020
- name: 👩‍🏫 Frequently Asked Questions
21-
url: https://github.com/stdlib-js/stdlib/blob/develop/FAQ.md
21+
url: https://github.com/stdlib-js/stdlib/blob/develop/FAQ.md
2222
about: Consult the FAQ in case we have already answered your question there.
2323
- name: 💬 Question
24-
url: https://gitter.im/stdlib-js/stdlib
24+
url: https://gitter.im/stdlib-js/stdlib
2525
about: Got a (non-bug related) question we haven't already answered? Ask us on Gitter! 🤗
2626
- name: 👏 Support Us
2727
url: https://github.com/stdlib-js/stdlib/blob/develop/docs/support_the_project.md

.github/workflows/do_not_merge.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,7 @@ jobs:
4343

4444
# Define job permissions:
4545
permissions:
46-
contents: read
47-
pull-requests: write
46+
pull-requests: read
4847

4948
# Define the type of virtual host machine:
5049
runs-on: ubuntu-latest

.github/workflows/first_time_greeting.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ on: [pull_request_target, issues]
2424

2525
# Global permissions:
2626
permissions:
27-
# Allow read-only access to the repository contents:
28-
contents: read
27+
# Do not give the workflow any permissions:
28+
contents: none
2929

3030
# Workflow jobs:
3131
jobs:
@@ -47,7 +47,7 @@ jobs:
4747
# Pin action to full length commit SHA
4848
uses: actions/first-interaction@34f15e814fe48ac9312ccf29db4e74fa767cbab7 # v1.3.0
4949
with:
50-
repo-token: ${{ secrets.CHATBOT_GITHUB_TOKEN }}
50+
repo-token: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
5151
issue-message: |
5252
:wave: Hi there! :wave:
5353

.github/workflows/lint_pr_title.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,10 @@ jobs:
8484

8585
# Perform linting:
8686
- name: 'Perform linting'
87+
env:
88+
PR_TITLE: ${{ github.event.pull_request.title }}
8789
run: |
8890
echo "Pull request titles should follow stdlib's Git commit message conventions."
8991
echo "Linting pull request title..."
90-
make lint-commit-message GIT_COMMIT_MESSAGE='${{ github.event.pull_request.title }}'
92+
make lint-commit-message GIT_COMMIT_MESSAGE="${PR_TITLE}"
9193
timeout-minutes: 5

.github/workflows/make.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,9 @@ jobs:
6464

6565
# Specify whether to download Git-LFS files:
6666
lfs: false
67+
68+
# Avoid storing GitHub token in local Git configuration:
69+
persist-credentials: false
6770
timeout-minutes: 10
6871

6972
# Install Node.js:

.github/workflows/markdown_equations.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,9 @@ jobs:
6464

6565
# Specify whether to download Git-LFS files:
6666
lfs: false
67+
68+
# Avoid storing GitHub token in local Git configuration:
69+
persist-credentials: false
6770
timeout-minutes: 10
6871

6972
# Install Node.js:
@@ -103,7 +106,6 @@ jobs:
103106
git_user_signingkey: true
104107
git_commit_gpgsign: true
105108

106-
107109
# Generate list of changed Markdown files:
108110
- name: 'Find changed Markdown files'
109111
run: |
@@ -161,7 +163,7 @@ jobs:
161163
commit-message: 'docs: update Markdown equation elements'
162164
committer: 'stdlib-bot <[email protected]>'
163165
signoff: true
164-
token: ${{ secrets.PULL_REQUEST_TOKEN }}
166+
token: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
165167
labels: |
166168
documentation
167169
automated-pr

.github/workflows/markdown_links.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ name: markdown_links
2323
on:
2424
schedule:
2525
# Run the workflow once a month on the 1st day of every month:
26-
- cron: "0 0 1 * *"
26+
- cron: '0 0 1 * *'
2727

2828
# Allow the workflow to be manually run:
2929
workflow_dispatch:
@@ -76,6 +76,9 @@ jobs:
7676

7777
# Specify whether to download Git-LFS files:
7878
lfs: false
79+
80+
# Avoid storing GitHub token in local Git configuration:
81+
persist-credentials: false
7982
timeout-minutes: 10
8083

8184
# Initialize log files:

.github/workflows/markdown_pkg_urls.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,10 @@ jobs:
7070

7171
# Specify whether to download Git-LFS files:
7272
lfs: false
73+
74+
# Avoid storing GitHub token in local Git configuration:
75+
persist-credentials: false
76+
7377
timeout-minutes: 10
7478

7579
# Install Node.js:
@@ -131,7 +135,7 @@ jobs:
131135
fi
132136
timeout-minutes: 10
133137

134-
# Create a pull request with the changes:
138+
# Create a pull request with the changes:
135139
- name: 'Create pull request'
136140
id: cpr
137141
if: steps.update-markdown-pkg-urls.outputs.changed == 'true'
@@ -147,7 +151,7 @@ jobs:
147151
commit-message: 'docs: update Markdown stdlib package URLs'
148152
committer: 'stdlib-bot <[email protected]>'
149153
signoff: true
150-
token: ${{ secrets.PULL_REQUEST_TOKEN }}
154+
token: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
151155
labels: |
152156
documentation
153157
automated-pr

.github/workflows/markdown_related_packages.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@ jobs:
6868

6969
# Specify whether to download Git-LFS files:
7070
lfs: false
71+
72+
# Avoid storing GitHub token in local Git configuration:
73+
persist-credentials: false
7174
timeout-minutes: 10
7275

7376
# Install Node.js:
@@ -159,7 +162,7 @@ jobs:
159162
commit-message: 'docs: update related packages sections'
160163
committer: 'stdlib-bot <[email protected]>'
161164
signoff: true
162-
token: ${{ secrets.PULL_REQUEST_TOKEN }}
165+
token: ${{ secrets.STDLIB_BOT_FGPAT_PR_WRITE }}
163166
labels: |
164167
documentation
165168
automated-pr

0 commit comments

Comments
 (0)