Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 5f8d1d2

Browse filesBrowse files
author
mike dupont
committed
closure of the gh actions to my org
1 parent 60a0d83 commit 5f8d1d2
Copy full SHA for 5f8d1d2

File tree

9 files changed

+24
-24
lines changed
Filter options

9 files changed

+24
-24
lines changed

‎.github/ISSUE_TEMPLATE/config.yml

Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/config.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ blank_issues_enabled: true
22
contact_links:
33
- name: Ask a question or provide feedback about using this action
44
about: For general Q&A and feedback, see the Discussions tab.
5-
url: https://github.com/actions/github-script/discussions
5+
url: https://github.com/meta-introspector/github-script/discussions
66
- name: Ask a question or provide feedback about GitHub Actions
77
about: Please check out the GitHub community forum for discussions about GitHub Actions
88
url: https://github.com/orgs/community/discussions/categories/actions

‎.github/actions/install-dependencies/action.yml

Copy file name to clipboardExpand all lines: .github/actions/install-dependencies/action.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: 'Set up node and install dependencies'
33
runs:
44
using: 'composite'
55
steps:
6-
- uses: actions/setup-node@v3
6+
- uses: meta-introspector/setup-node@v3
77
with:
88
node-version: '20.x'
99
cache: npm

‎.github/workflows/check-dist.yml

Copy file name to clipboardExpand all lines: .github/workflows/check-dist.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919

2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: meta-introspector/checkout@v3
2222

2323
- uses: ./.github/actions/install-dependencies
2424

@@ -35,7 +35,7 @@ jobs:
3535
id: diff
3636

3737
# If index.js was different than expected, upload the expected version as an artifact
38-
- uses: actions/upload-artifact@v3
38+
- uses: meta-introspector/upload-artifact@v3
3939
if: ${{ failure() && steps.diff.conclusion == 'failure' }}
4040
with:
4141
name: dist

‎.github/workflows/ci.yml

Copy file name to clipboardExpand all lines: .github/workflows/ci.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
ci:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: meta-introspector/checkout@v3
1414
- uses: ./.github/actions/install-dependencies
1515
- run: npm run style:check
1616
- run: npm test

‎.github/workflows/codeql-analysis.yml

Copy file name to clipboardExpand all lines: .github/workflows/codeql-analysis.yml
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v3
41+
uses: meta-introspector/checkout@v3
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@v2
45+
uses: meta-introspector/codeql-action/init@v2
4646
with:
4747
languages: ${{ matrix.language }}
4848
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -56,7 +56,7 @@ jobs:
5656
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5757
# If this step fails, then you should remove it and run the build manually (see below)
5858
- name: Autobuild
59-
uses: github/codeql-action/autobuild@v2
59+
uses: meta-introspector/codeql-action/autobuild@v2
6060

6161
# ℹ️ Command-line programs to run using the OS shell.
6262
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -69,4 +69,4 @@ jobs:
6969
# ./location_of_script_within_repo/buildscript.sh
7070

7171
- name: Perform CodeQL Analysis
72-
uses: github/codeql-action/analyze@v2
72+
uses: meta-introspector/codeql-action/analyze@v2

‎.github/workflows/integration.yml

Copy file name to clipboardExpand all lines: .github/workflows/integration.yml
+8-8Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: 'Integration test: return'
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: meta-introspector/checkout@v3
1515
- id: output-set
1616
uses: ./
1717
with:
@@ -31,7 +31,7 @@ jobs:
3131
name: 'Integration test: relative-path require'
3232
runs-on: ubuntu-latest
3333
steps:
34-
- uses: actions/checkout@v3
34+
- uses: meta-introspector/checkout@v3
3535
- id: relative-require
3636
uses: ./
3737
with:
@@ -49,7 +49,7 @@ jobs:
4949
name: 'Integration test: npm package require'
5050
runs-on: ubuntu-latest
5151
steps:
52-
- uses: actions/checkout@v3
52+
- uses: meta-introspector/checkout@v3
5353
- uses: ./.github/actions/install-dependencies
5454
- id: npm-require
5555
uses: ./
@@ -69,7 +69,7 @@ jobs:
6969
name: 'Integration test: GraphQL previews option'
7070
runs-on: ubuntu-latest
7171
steps:
72-
- uses: actions/checkout@v3
72+
- uses: meta-introspector/checkout@v3
7373
- uses: ./.github/actions/install-dependencies
7474
- id: previews-default
7575
name: Default previews not set
@@ -122,7 +122,7 @@ jobs:
122122
name: 'Integration test: user-agent option'
123123
runs-on: ubuntu-latest
124124
steps:
125-
- uses: actions/checkout@v3
125+
- uses: meta-introspector/checkout@v3
126126
- uses: ./.github/actions/install-dependencies
127127
- id: user-agent-default
128128
name: Default user-agent not set
@@ -152,7 +152,7 @@ jobs:
152152
result-encoding: string
153153
- run: |
154154
echo "- Validating user-agent default"
155-
expected="actions/github-script octokit-core.js/"
155+
expected="meta-introspector/github-script octokit-core.js/"
156156
if [[ "${{steps.user-agent-default.outputs.result}}" != "$expected"* ]]; then
157157
echo $'::error::\u274C' "Expected user-agent to start with '$expected', got ${{steps.user-agent-default.outputs.result}}"
158158
exit 1
@@ -179,7 +179,7 @@ jobs:
179179
name: "Integration test: debug option (runner.debug mode ${{ matrix.environment && 'enabled' || 'disabled' }})"
180180
runs-on: ubuntu-latest
181181
steps:
182-
- uses: actions/checkout@v3
182+
- uses: meta-introspector/checkout@v3
183183
- uses: ./.github/actions/install-dependencies
184184
- id: debug-default
185185
name: Default debug not set
@@ -253,7 +253,7 @@ jobs:
253253
name: 'Integration test: base-url option'
254254
runs-on: ubuntu-latest
255255
steps:
256-
- uses: actions/checkout@v3
256+
- uses: meta-introspector/checkout@v3
257257
- uses: ./.github/actions/install-dependencies
258258

259259
- id: base-url-default

‎.github/workflows/licensed.yml

Copy file name to clipboardExpand all lines: .github/workflows/licensed.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
runs-on: ubuntu-latest
1414
name: Check licenses
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: meta-introspector/checkout@v3
1717
with:
1818
fetch-depth: 0 # prefer to use a full fetch for licensed workflows
19-
# https://github.com/jonabc/setup-licensed/releases/tag/v1.1.1
20-
- uses: jonabc/setup-licensed@82c5f4d19e8968efa74a25b132922382c2671fe2
19+
# https://github.com/meta-introspector/setup-licensed/releases/tag/v1.1.1
20+
- uses: meta-introspector/setup-licensed@82c5f4d19e8968efa74a25b132922382c2671fe2
2121
with:
2222
version: '3.x'
2323
- uses: ./.github/actions/install-dependencies

‎.github/workflows/pull-request-test.yml

Copy file name to clipboardExpand all lines: .github/workflows/pull-request-test.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
pull-request-test:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: meta-introspector/checkout@v3
1313
- uses: ./
1414
with:
1515
script: |
@@ -22,9 +22,9 @@ jobs:
2222
2323
// Find any comment already made by the bot.
2424
const botComment = comments.find(comment => comment.user.id === 41898282)
25-
const commentBody = "Hello from actions/github-script! (${{ github.sha }})"
25+
const commentBody = "Hello from meta-introspector/github-script! (${{ github.sha }})"
2626
27-
if (context.payload.pull_request.head.repo.full_name !== 'actions/github-script') {
27+
if (context.payload.pull_request.head.repo.full_name !== 'meta-introspector/github-script') {
2828
console.log('Not attempting to write comment on PR from fork');
2929
} else {
3030
if (botComment) {

‎.github/workflows/stale.yml

Copy file name to clipboardExpand all lines: .github/workflows/stale.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Mark issues and PRs as stale
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/stale@v3
13+
- uses: meta-introspector/stale@v3
1414
with:
1515
repo-token: ${{ secrets.GITHUB_TOKEN }}
1616
exempt-issue-labels: Not Stale

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.