| name | GitHub Skills Exercise |
|---|---|
| about | Template for creating a new GitHub Skills exercise |
| title | building-with-the-github-copilot-app: Building with the GitHub Copilot app |
| labels | skills |
| assignees |
GitHub Spark is an AI-powered application development and deployment platform that turns natural language ideas into full-stack intelligent apps in minutes.
This means faster time to production of new ideas, more of the right ideas shipped, and builders focused on solving business problems—not setup and wiring.
- Accelerate Builder Productivity: Spark turns natural language into working full-stack apps in minutes, helping teams validate ideas early, ship the right things faster, and keep focus on business impact rather than setup
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
| { | |
| "recommendations": [ | |
| // Essential Java Development | |
| "vscjava.vscode-java-pack", | |
| "redhat.java", | |
| "vscjava.vscode-java-debug", | |
| "vscjava.vscode-java-test", | |
| "vscjava.vscode-java-dependency", | |
| // Build Tools |
Build a comprehensive web application for tracking statistics during an American football game and generating detailed reports at the end.
- Field: 100 yards long with 10-yard end zones at each end
- Teams: 11 players per side on the field
- Quarters: Four 15-minute quarters
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
| name: Add a new GitHub Project card linked to a GitHub issue to the specified project column | |
| on: | |
| issues: | |
| types: [ opened, labeled, unlabeled ] | |
| env: | |
| GITHUB_ORG: ${{ github.repository_owner }} | |
| GITHUB_PROJECT_NAME: "Continuous-Devops-GitHub-App-MasterBlaster" | |
| GITHUB_EVENT: ${{ toJson(github.event) }} | |
| GITHUB_ISSUE: ${{ toJson(github.event.issue) }} | |
| GITHUB_ISSUE_URL: ${{ github.event.issue.html_url }} |
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
| --- | |
| apiVersion: tekton.dev/v1beta1 | |
| kind: Task | |
| metadata: | |
| name: extract-check-build-verify-push | |
| spec: | |
| workspaces: | |
| - name: source | |
| description: The image building will be done onto the volume backing this workspace | |
| params: |
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
| apiVersion: v1 | |
| kind: ConfigMap | |
| metadata: | |
| name: app-sre-jcasc | |
| namespace: app-sre-cicd | |
| data: | |
| 1-app-sre-jcasc.yaml: | | |
| jenkins: | |
| systemMessage: "<h2>Welcome to the App-SRE Jenkins on OSD</h2>" | |
| numExecutors: 0 |
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
| jenkins: | |
| systemMessage: "<h2>Welcome to the App-SRE Jenkins on OSD</h2>" | |
| agentProtocols: | |
| - "JNLP4-connect" | |
| - "Ping" | |
| authorizationStrategy: | |
| globalMatrix: | |
| permissions: | |
| - "Overall/Administer:arilivigni" | |
| securityRealm: |
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
| #!/bin/bash | |
| set -x | |
| set -e | |
| # Clone the repo | |
| git clone https://github.com/jenkinsci/jenkinsfile-runner.git | |
| pushd jenkinsfile-runner |
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
| env.REMOTE = env.BRANCH_NAME ?: 'https://github.com/CentOS/cico-pipeline-library.git' | |
| env.ghprbActualCommit = env.ghprbActualCommit ?: 'master' | |
| library identifier: "cico-pipeline-lib@${env.ghprbActualCommit}", | |
| retriever: modernSCM([$class: 'GitSCMSource', | |
| remote: "${env.REMOTE}"]) | |
| import org.centos.* | |
| node { | |
| deleteDir() |
NewerOlder