-
Notifications
You must be signed in to change notification settings - Fork 4
mandolin11 #58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
calbearox
wants to merge
40
commits into
monstro805-patch-1
Choose a base branch
from
Project
base: monstro805-patch-1
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
mandolin11 #58
Changes from all commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
abb2796
Set theme jekyll-theme-cayman
monstro805 3069465
Create index.md
monstro805 e69fa3f
update config.yml
monstro805 3b83dd4
Create CNAME
monstro805 dad934b
Add files via upload
monstro805 628581c
Create docs config
monstro805 aae9c73
Create CNAME
monstro805 40c3316
Set theme jekyll-theme-cayman
monstro805 3011974
Add files via upload
monstro805 e392134
Add files via upload
monstro805 e4a177c
Create @monstro805
monstro805 fa73549
Merge pull request #14 from M1-Cal/monstro805-patch-4
monstro805 a890ebb
Add files via upload
monstro805 0cb0ab7
Add files via upload
monstro805 6ecbd24
Update _config.yml
monstro805 dd1d09f
Add files via upload
monstro805 ce5c6db
Add files via upload
monstro805 37bb74d
Update and rename build-script to monstro805:circleci-project-setup
monstro805 7286c13
Merge pull request #15 from M1-Cal/monstro805-patch-5
monstro805 2f49558
Create shiftleft-analysis.yml
monstro805 1df055e
Create README.md
monstro805 2c4538f
Create README.md
monstro805 7c0babc
Create github-actions-demo.yml
monstro805 e60fc15
Update github-actions-yml
monstro805 ef71ba5
Create file.js
monstro805 c38a795
file.js
monstro805 871692d
Update file.js
monstro805 40bd3e9
circleci-config-validate
monstro805 b45f1d0
8
monstro805 73dd9cf
8
monstro805 ce59929
Create jekyll.yml
monstro805 f4ecb13
Update jekyll.yml
monstro805 e46546c
Create monstro805:python-package-conda.yml
monstro805 f6d1443
Add files via upload
monstro805 13986ac
github-actions-m1-cal.yml
monstro805 13b9027
Update _config.yml
monstro805 074b93a
Update workflows
monstro805 f430a97
Update file.js
monstro805 a2c7f4f
_config.yaml
monstro805 e2be6e0
Update _config.yml
monstro805 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Binary file not shown.
This file contains hidden or 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 |
---|---|---|
@@ -1 +1,19 @@ | ||
#https://github.com/TejasvOnly/random-rickroll | ||
name: GitHub Actions Demo | ||
on: [push] | ||
jobs: | ||
Explore-GitHub-Actions: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." | ||
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" | ||
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." | ||
- name: Check out repository code | ||
uses: actions/checkout@v2 | ||
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." | ||
- run: echo "🖥️ The workflow is now ready to test your code on the runner." | ||
- name: List files in the repository | ||
run: | | ||
ls ${{ github.workspace }} | ||
- run: echo "🍏 This job's status is ${{ job.status }}." | ||
- name: GitHub Script | ||
uses: actions/[email protected] |
This file contains hidden or 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,47 @@ | ||
# This workflow uses actions that are not certified by GitHub. | ||
# They are provided by a third-party and are governed by | ||
# separate terms of service, privacy policy, and support | ||
# documentation. | ||
|
||
# This workflow integrates Scan with GitHub's code scanning feature | ||
# Scan is a free open-source security tool for modern DevOps teams from ShiftLeft | ||
# Visit https://slscan.io/en/latest/integrations/code-scan for help | ||
name: SL Scan | ||
|
||
on: | ||
push: | ||
branches: [ Project ] | ||
pull_request: | ||
# The branches below must be a subset of the branches above | ||
branches: [ Project ] | ||
schedule: | ||
- cron: '20 5 * * 0' | ||
|
||
jobs: | ||
Scan-Build: | ||
# Scan runs on ubuntu, mac and windows | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
# Instructions | ||
# 1. Setup JDK, Node.js, Python etc depending on your project type | ||
# 2. Compile or build the project before invoking scan | ||
# Example: mvn compile, or npm install or pip install goes here | ||
# 3. Invoke Scan with the github token. Leave the workspace empty to use relative url | ||
|
||
- name: Perform Scan | ||
uses: ShiftLeftSecurity/scan-action@39af9e54bc599c8077e710291d790175c9231f64 | ||
env: | ||
WORKSPACE: "" | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
SCAN_AUTO_BUILD: true | ||
with: | ||
output: reports | ||
# Scan auto-detects the languages in your project. To override uncomment the below variable and set the type | ||
# type: credscan,java | ||
# type: python | ||
|
||
- name: Upload report | ||
uses: github/codeql-action/upload-sarif@v1 | ||
with: | ||
sarif_file: reports |
This file contains hidden or 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 @@ | ||
2021-11-26T11:32:06.1757149Z Cleaning up orphan processes |
This file contains hidden or 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 @@ | ||
hello.m1cal.net |
This file contains hidden or 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 |
---|---|---|
@@ -1 +1,143 @@ | ||
# Mandolin11 | ||
# action.js | ||
|
||
> GitHub API client for GitHub Actions | ||
|
||
[](https://www.npmjs.com/package/@octokit/action) | ||
[](https://github.com/octokit/action.js/actions) | ||
|
||
## Usage | ||
|
||
<table> | ||
<tbody valign=top align=left> | ||
<tr><th> | ||
Browsers | ||
</th><td width=100%> | ||
|
||
`@octokit/action` is not meant for browser usage. | ||
|
||
</td></tr> | ||
<tr><th> | ||
Node | ||
</th><td> | ||
|
||
Install with `npm install @octokit/action` | ||
|
||
```js | ||
const { Octokit } = require("@octokit/action"); | ||
// or: import { Octokit } from "@octokit/action"; | ||
``` | ||
|
||
</td></tr> | ||
</tbody> | ||
</table> | ||
|
||
You can pass `secret.GITHUB_TOKEN` or any of your own secrets to a Node.js script. For example | ||
|
||
```yml | ||
name: My Node Action | ||
on: | ||
- pull_request | ||
jobs: | ||
my-action: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Check out code using git | ||
- uses: actions/checkout@v2 | ||
# Install Node 12 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
version: 12 | ||
- run: npm install @octokit/action | ||
# Node.js script can be anywhere. A good convention is to put local GitHub Actions | ||
# into the `.github/actions` folder | ||
- run: node .github/actions/my-script.js | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
``` | ||
|
||
Setting `GITHUB_TOKEN` on either [`with:`](https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstepswith) or [`env:`](https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#env) will work. | ||
|
||
```js | ||
// .github/actions/my-script.js | ||
const { Octokit } = require("@octokit/action"); | ||
|
||
const octokit = new Octokit(); | ||
|
||
// `octokit` is now authenticated using GITHUB_TOKEN | ||
``` | ||
|
||
### Create an issue using REST API | ||
|
||
```js | ||
const { Octokit } = require("@octokit/action"); | ||
|
||
const octokit = new Octokit(); | ||
const [owner, repo] = process.env.GITHUB_REPOSITORY.split("/"); | ||
|
||
// See https://developer.github.com/v3/issues/#create-an-issue | ||
const { data } = await octokit.request("POST /repos/{owner}/{repo}/issues", { | ||
owner, | ||
repo, | ||
title: "My test issue", | ||
}); | ||
console.log("Issue created: %s", data.html_url); | ||
``` | ||
|
||
You can also use `octokit.issues.create({ owner, repo, title })`. See the [REST endpoint methods plugin](https://github.com/octokit/plugin-rest-endpoint-methods.js/) for a list of all available methods. | ||
|
||
### Create an issue using GraphQL | ||
|
||
```js | ||
const { Octokit } = require("@octokit/action"); | ||
|
||
const octokit = new Octokit(); | ||
const eventPayload = require(process.env.GITHUB_EVENT_PATH); | ||
const repositoryId = eventPayload.repository.node_id; | ||
|
||
const response = await octokit.graphql( | ||
` | ||
mutation($repositoryId:ID!, $title:String!) { | ||
createIssue(input:{repositoryId: $repositoryId, title: $title}) { | ||
issue { | ||
number | ||
} | ||
} | ||
} | ||
`, | ||
{ | ||
repositoryId, | ||
title: "My test issue", | ||
} | ||
); | ||
``` | ||
|
||
### Hooks, plugins, and more | ||
|
||
`@octokit/action` is build upon `@octokit/core`. Refer to [its README](https://github.com/octokit/core.js#readme) for the full API documentation. | ||
|
||
### TypeScript: Endpoint method parameters and responses | ||
|
||
Types for endpoint method parameters and responses are exported as `RestEndpointMethodTypes`. They keys are the same as the endpoint methods. Here is an example to retrieve the parameter and response types for `octokit.checks.create()` | ||
|
||
```ts | ||
import { RestEndpointMethodTypes } from `@octokit/action`; | ||
|
||
type ChecksCreateParams = | ||
RestEndpointMethodTypes["checks"]["create"]["parameters"]; | ||
type ChecksCreateResponse = | ||
RestEndpointMethodTypes["checks"]["create"]["response"]; | ||
``` | ||
|
||
### Proxy Servers | ||
|
||
If you use [self-hosted runners](https://docs.github.com/en/actions/hosting-your-own-runners/about-self-hosted-runners) and require a proxy server to access internet resources then you will need to ensure that you have correctly configured the runner for [proxy servers](https://docs.github.com/en/actions/hosting-your-own-runners/using-a-proxy-server-with-self-hosted-runners). `@octokit/action` will pick up the configured proxy server environment variables and configure `@octokit/core` with the correct `request.agent` using [proxy-agent](https://github.com/TooTallNate/node-proxy-agent/blob/master/index.js). If you need to supply a different `request.agent` then you should ensure that it handles proxy servers if needed. | ||
|
||
## How it works | ||
|
||
`@octokit/action` is simply a [`@octokit/core`](https://github.com/octokit/core.js#readme) constructor, pre-authenticate using [`@octokit/auth-action`](https://github.com/octokit/auth-action.js#readme). | ||
|
||
The source code is … simple: [`src/index.ts`](src/index.ts). | ||
|
||
## License | ||
|
||
[MIT](LICENSE) |
This file contains hidden or 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,2 @@ | ||
[InternetShortcut] | ||
URL=https://www.github.com/monstro805/dependabot-core/tree/main/.devcontainer |
This file contains hidden or 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 @@ | ||
ERNJX8Z82P28ZP8YZT25T9UVl1l8HP28RQ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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 @@ | ||
<?xml version="1.0"?> | ||
<!-- | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
--> | ||
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> | ||
<update handle="formkey"/> | ||
<update handle="styles"/> | ||
<body> | ||
<referenceContainer name="content"> | ||
<uiComponent name="bulk_listing"/> | ||
</referenceContainer> | ||
</body> | ||
</page> |
This file contains hidden or 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,49 @@ | ||
# Use the latest 2.1 version of CircleCI pipeline process engine. | ||
# See: https://circleci.com/docs/2.0/configuration-reference | ||
# For a detailed guide to building and testing on Android, read the docs: | ||
# https://circleci.com/docs/2.0/language-android/ for more details. | ||
version: 2.1 | ||
|
||
# Orbs are reusable packages of CircleCI configuration that you may share across projects, enabling you to create encapsulated, parameterized commands, jobs, and executors that can be used across multiple projects. | ||
# See: https://circleci.com/docs/2.0/orb-intro/ | ||
orbs: | ||
android: circleci/[email protected] | ||
|
||
# Define a job to be invoked later in a workflow. | ||
# See: https://circleci.com/docs/2.0/configuration-reference/#jobs | ||
jobs: | ||
# Below is the definition of your job to build and test your app, you can rename and customize it as you want. | ||
build-and-test: | ||
# These next lines define the Android machine image executor. | ||
# See: https://circleci.com/docs/2.0/executor-types/ | ||
executor: | ||
name: android/android-machine | ||
|
||
# Add steps to the job | ||
# See: https://circleci.com/docs/2.0/configuration-reference/#steps | ||
steps: | ||
# Checkout the code as the first step. | ||
- checkout | ||
|
||
# The next step will run the unit tests | ||
- android/run-tests: | ||
test-command: ./gradlew lint testDebug --continue | ||
|
||
# Then start the emulator and run the Instrumentation tests! | ||
- android/start-emulator-and-run-tests: | ||
test-command: ./gradlew connectedDebugAndroidTest | ||
system-image: system-images;android-25;google_apis;x86 | ||
|
||
# And finally run the release build | ||
- run: | ||
name: Assemble release build | ||
command: | | ||
./gradlew assembleRelease | ||
|
||
# Invoke jobs via workflows | ||
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows | ||
workflows: | ||
sample: # This is the name of the workflow, feel free to change it to better match your workflow. | ||
# Inside the workflow, you define the jobs you want to run. | ||
jobs: | ||
- build-and-test |
This file contains hidden or 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,2 @@ | ||
|
||
$ mkdir docs # Creates a new folder called docs $ cd docs |
This file contains hidden or 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 @@ | ||
m1oxnard.business.site |
This file contains hidden or 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 @@ | ||
# https://www.m1cal.net/ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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,37 @@ | ||
## Welcome to GitHub Pages | ||
|
||
You can use the [editor on GitHub](https://github.com/M1-Cal/Mandolin11/edit/Project/docs/index.md) to maintain and preview the content for your website in Markdown files. | ||
|
||
Whenever you commit to this repository, GitHub Pages will run [Jekyll](https://jekyllrb.com/) to rebuild the pages in your site, from the content in your Markdown files. | ||
|
||
### Markdown | ||
|
||
Markdown is a lightweight and easy-to-use syntax for styling your writing. It includes conventions for | ||
|
||
```markdown | ||
Syntax highlighted code block | ||
|
||
# Header 1 | ||
## Header 2 | ||
### Header 3 | ||
|
||
- Bulleted | ||
- List | ||
|
||
1. Numbered | ||
2. List | ||
|
||
**Bold** and _Italic_ and `Code` text | ||
|
||
[Link](url) and  | ||
``` | ||
|
||
For more details see [Basic writing and formatting syntax](https://docs.github.com/en/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax). | ||
|
||
### Jekyll Themes | ||
|
||
Your Pages site will use the layout and styles from the Jekyll theme you have selected in your [repository settings](https://github.com/M1-Cal/Mandolin11/settings/pages). The name of this theme is saved in the Jekyll `_config.yml` configuration file. | ||
|
||
### Support or Contact | ||
|
||
Having trouble with Pages? Check out our [documentation](https://docs.github.com/categories/github-pages-basics/) or [contact support](https://support.github.com/contact) and we’ll help you sort it out. |
This file contains hidden or 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 @@ | ||
#f3c7df |
This file contains hidden or 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,2 @@ | ||
armando805ox36186 | ||
# https://slack.api.stdlib.com/[email protected]/files/create/ |
This file contains hidden or 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 @@ | ||
# https://s3.amazonaws.com/buildkiteartifacts.com/abf21a88-8e10-435d-a48d-f290f59350b4/84b13cef-4960-4f8e-93be-695f38cb5c0c/8b7c33dc-3b19-41f4-9019-81f29999ff84/92386159-b0d3-4023-b9b1-5b0193f183bd/_out_/profile.json?response-content-type=application%2Fjson&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIAQPCP3C7LQRB7IVSL%2F20211209%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20211209T071938Z&X-Amz-Expires=600&X-Amz-SignedHeaders=host&X-Amz-Security-Token=IQoJb3JpZ2luX2VjEPX%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCXVzLWVhc3QtMSJHMEUCIFAijEZsP5VuYBQeX7gZCg6oj4eAyMRJhh4zpejHyUgUAiEAvmyj0j%2FGC7JAmwa0uJMd0fa2cYb2TskXP7gIiAy33tgqgwQIzv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAAGgwwMzIzNzk3MDUzMDMiDLMmMGGyZQlSszaLISrXA%2F3gjeaBe33786tlrl3dIWm%2BWGIJGGtlkWwvK9CHb7crONfr4gvSFLYQQjlhgyENtX%2B0q%2BDViSLASEPYff0HwEYgajpttrzrRmT1KZhyNcQTtyFYt23kj8wUJA06W7w004e6LUsxtsYMlT2imAljbcNNSKlIYwxjXlmUjFB2TZ13FbwHqrLZJrLlPNrVTMjyHZlWm15H0e8IyBUST%2B%2FHQUtZ%2BTsv1oAd%2BmPfmQ4xpev6oihTiCfmy583F3nH834lKMf3a7oXMow9o5QOq4P1%2FYU8zfY7PHgpySkYskUm%2FkQ6CY%2FIy6YJ9DEzubMgaFKyR8oa99OvLJCeB1Ty%2FvNbdSrNQyPpREZTGy2WfVhoFUgdwGySuNrbITuEJqjOZz%2BEhflLSMOYyAbUgreW5E%2BiLnevsJaLj1y0pY7ScW399X%2FzeZEM4q2Z2Oi26R6g6KewhzOI3x6T4HFwQb2EU4Jv6L9yVSTAw2EzmHfTWCSLGsQCGalELovYpMjBbpJUKxLi9jWKwTu6U6x%2FkwfjdM%2BaeOGsBjU3AIa2qHa%2FDS2tSOgol6WPgagAzI9cKFnAFFeraTJ4US3O1VV%2F64zdnsavKf1wI1gLvVs3tw2wTSpVnCURRLW3sOMsNjDzl8aNBjqlAUxv3ei7wWhlRVy5Iy9ZJ19kHhC4A3W3LxvmdsnqZn%2F%2BEEbIayu8SgJu3TT%2BPG8nt29ECqSN0%2B1Cl3znjFyLAM5S33%2Bxg%2BtWcfn0FRAG6tvsaBhG%2BzOpTtLZuTkwbQpBA2%2BfillDnDdJpm52ABfPJN6H8FudpL%2BJf33dI%2F841tnioaREuYfglohrO4%2FvaQ%2Bdn0WaKiKKWdefYTFoxp0HneWjDETcQg%3D%3D&X-Amz-Signature=825871b7998be3df242c967575d0550faea8f4fada23edd7b90e65f704937a8f |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
action.js