No description provided.
. #24208
pull rsogllc wants to merge 6 commits into bitcoin:master from rsogllc:rsogllc-patch-2 changing 3 files +34 −82-
rsogllc commented at 1:44 AM on January 31, 2022: none
-
Update README.md 0b530242a5
-
Update README.md 475f375ad9
-
Update README.md 2cf7eaa21c
-
49617e5885
Merge pull request #1 from rsogllc/rsogllc-patch-1
Update README.md
-
Create manual.yml 738f05b3a1
-
e323b08573
Create SuperLint
--- ################################# ################################# ## Super Linter GitHub Actions ## ################################# ################################# name: Lint Code Base # # Documentation: # https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions # ############################# # Start the job on all push # ############################# on: push: branches-ignore: [master, main] # Remove the line above to run when pushing to master pull_request: branches: [master, main] ############### # Set the Job # ############### jobs: build: # Name the Job name: Lint Code Base # Set the agent to run on runs-on: ubuntu-latest ################## # Load all steps # ################## steps: ########################## # Checkout the code base # ########################## - name: Checkout Code uses: actions/checkout@v2 with: # Full git history is needed to get a proper list of changed files within `super-linter` fetch-depth: 0 ################################ # Run Linter against code base # ################################ - name: Lint Code Base uses: github/super-linter@v4 env: VALIDATE_ALL_CODEBASE: false DEFAULT_BRANCH: master GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - fanquake closed this on Jan 31, 2022
- fanquake locked this on Jan 31, 2022
- fanquake renamed this:
Rsogllc patch 2
.
on Jan 31, 2022
Contributors