Skip to content

Commit

Permalink
Initialize Silvrbckw-patch-4
Browse files Browse the repository at this point in the history
  • Loading branch information
Silvrbckw authored Aug 19, 2024
0 parents commit 28e26a9
Show file tree
Hide file tree
Showing 390 changed files with 51,353 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
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.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/custom.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
name: Custom issue template
about: Describe this issue template's purpose here.
title: ''
labels: ''
assignees: ''

---


20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
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.

**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.
Binary file added .github/workflows/chrome_proxy.exe
Binary file not shown.
77 changes: 77 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"

on:
push:
branches: [ "main" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ]
schedule:
- cron: '25 19 * * 1'

jobs:
analyze:
name: Analyze
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'javascript' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby', 'swift' ]
# Use only 'java' to analyze code written in Java, Kotlin or both
# Use only 'javascript' to analyze code written in JavaScript, TypeScript or both
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support

steps:
- name: Checkout repository
uses: actions/checkout@v3

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.

# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality


# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v2

# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun

# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.

# - run: |
# echo "Run, Build Application using script"
# ./location_of_script_within_repo/buildscript.sh

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"
47 changes: 47 additions & 0 deletions .github/workflows/defender-for-devops.yml
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.
#
# Microsoft Security DevOps (MSDO) is a command line application which integrates static analysis tools into the development cycle.
# MSDO installs, configures and runs the latest versions of static analysis tools
# (including, but not limited to, SDL/security and compliance tools).
#
# The Microsoft Security DevOps action is currently in beta and runs on the windows-latest queue,
# as well as Windows self hosted agents. ubuntu-latest support coming soon.
#
# For more information about the action , check out https://github.com/microsoft/security-devops-action
#
# Please note this workflow do not integrate your GitHub Org with Microsoft Defender For DevOps. You have to create an integration
# and provide permission before this can report data back to azure.
# Read the official documentation here : https://learn.microsoft.com/en-us/azure/defender-for-cloud/quickstart-onboard-github

name: "Microsoft Defender For Devops"

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: '18 12 * * 1'

jobs:
MSDO:
# currently only windows latest is supported
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: |
5.0.x
6.0.x
- name: Run Microsoft Security DevOps
uses: microsoft/[email protected]
id: msdo
- name: Upload results to Security tab
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: ${{ steps.msdo.outputs.sarifFile }}
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
node_modules
.DS_Store
.cache/
public

# Local Netlify folder
.netlify
5 changes: 5 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"singleQuote": true,
"semi": true,
"tabWidth": 2,
}
32 changes: 32 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
![2022-08-06](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/f80bc900-f9ef-4c0f-a2ff-f22c7a5deebb)
![repository-open-graph-template](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/3aa53e7d-4098-4a6a-bd0d-ad2ac6b145ec)
![workAutomationFlow f5ba6d91](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/c0d47b08-f263-4d7e-8c46-3d775710e8f5)
![workAutomationFlow f5ba6d91 - Copy](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/41ce6c04-d66a-4356-ba10-095a72de26c3)
![social-youtube c11873ad](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/1e583086-75e9-4392-bf6d-0032f7c6e40b)
![social-youtube c11873ad - Copy](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/4d580021-194d-40a6-b865-0bce5073d719)
![social-twitter c8eb63d5](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/716cb9b4-aef8-4293-a904-e3676d63e551)
![social-twitter c8eb63d5 - Copy](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/f5a273b7-ee5b-4f69-a932-7bdc6b741492)
![social-rss 1a535d2d](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/65c345f7-78b9-411f-88c7-bd7c2e78e77e)
![social-rss 1a535d2d - Copy](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/159f686d-f9c2-4c0b-9337-a15bfbe11a4a)
![securityGovernanceIntro 26f76b6a](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/15b3e074-c9e9-48f7-97c6-0e58591c57d5)
![securityGovernanceIntro 26f76b6a - Copy](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/75aa73d1-6871-4480-91b9-f5431e5be1af)
![padExcelAutomation 9aa1bdbb](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/f1d67f8b-6872-4456-8ff1-d9a4acc2573e)
![padExcelAutomation 9aa1bdbb - Copy](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/81336e18-0159-40fe-b99e-e8f0e78b781b)
![introductionExpressions b65dcf08](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/fe4dd379-e2cb-4a8a-8582-8751e18aadd1)
![introductionExpressions b65dcf08 - Copy](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/8bcde102-7c38-4e17-b62f-25e5b16e763c)
![inputParameters 6fe8c352](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/dad216a2-8f26-48c0-9d7b-91b3be94ac73)
![inputParameters 6fe8c352 - Copy](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/d9e69259-414d-451c-bafe-a9b0478d2eb4)
![improveBusinessPerformanceAiBuilder 03cb6906](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/a488e1b4-29d8-4555-b905-8d57da5cbc03)
![improveBusinessPerformanceAiBuilder 03cb6906 - Copy](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/769f4fbe-1a34-4581-9f38-d8d9c3c0ced4)
![getStartedWithFormProcessing 0e76480b](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/25e4205d-7af7-46a4-b086-11edaaf69f5b)
![getStartedWithFormProcessing 0e76480b - Copy](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/eb17e780-a592-49b1-8d82-a7efdc8fde31)
![getStartedPowerAutomateButtons 0e1fd9ae](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/255a02d2-a7cc-4ffb-99eb-764ee441aaf0)
![getStartedPowerAutomateButtons 0e1fd9ae - Copy](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/5b0b7d78-a639-4f06-ac33-5025836a0b05)
![createBusinessProcessFlow dd05207d](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/4fbf9f21-57e4-4281-a405-28dd0334886d)
![createBusinessProcessFlow dd05207d - Copy](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/6551ddcb-1168-4c15-a36f-5bd0e9d666f9)
![businessProcessOptimizationProcessAdvisor 1661cfbf](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/70d8dc49-f63e-4df5-b996-861dcd18067f)
![businessProcessOptimizationProcessAdvisor 1661cfbf - Copy](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/4a1a1621-2c9e-4ea7-97d2-9911bb6ff38c)
![automateProcessPowerAutomate 471720d6](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/170301ca-0ff0-43e9-ac46-0c477df0bd7b)
![automateProcessPowerAutomate 471720d6 - Copy](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/ac581b31-9f96-4702-b64a-922737af5b9a)
![aiBuilderInvoiceProcessing 80dab93e](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/4a931018-41d0-454c-ae07-a4ad0885b833)
![aiBuilderInvoiceProcessing 80dab93e - Copy](https://github.com/SilverBackWarlords/RCS-Gatsby-Theme/assets/121541003/e777a034-e2a4-4bd2-8164-784d0a8005a5)
Loading

0 comments on commit 28e26a9

Please sign in to comment.