Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into willdavsmith/release-…
Browse files Browse the repository at this point in the history
…docs
  • Loading branch information
willdavsmith committed Sep 11, 2023
2 parents 7605b07 + eaee260 commit e085341
Show file tree
Hide file tree
Showing 1,976 changed files with 65,428 additions and 73,393 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# All of the people (and only those people) from the matching rule will be notified

# Default rule: anything that doesn't match a more specific rule goes here
* @project-radius/Radius-Eng
* @radius-project/Radius-Eng
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
blank_issues_enabled: true
contact_links:
- name: Discord Support
url: https://discord.gg/SRG3ePMKNy
about: Please ask any questions you may have here
2 changes: 1 addition & 1 deletion .github/runners/runner-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ spec:
replicas: 12
template:
spec:
organization: project-radius
organization: radius-project
dockerdWithinRunnerContainer: true
image: summerwind/actions-runner-dind
nodeSelector:
Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/radius-bot.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ async function cmdOkToTest(github, issue, isFromPulls, username) {
}

// Check if the user has permission to trigger e2e test with an issue comment
const org = 'project-radius';
const org = 'radius-project';
console.log(`Checking team membership for: ${username}`);
const isMember = await checkTeamMembership(github, org, process.env.TEAM_SLUG, username);
if (!isMember) {
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/assets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ on:
jobs:
publish:
name: Assets
runs-on: [self-hosted, 1ES.Pool=1ES-Radius ]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
26 changes: 13 additions & 13 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,22 +42,22 @@ env:
GOTESTSUMVERSION: 1.10.0

# Use radiusdev.azurecr.io for PR build. Otherwise, use radius.azurecr.io.
# TODO_LAUNCH: Remove this variable when we opensource the repo - https://github.com/project-radius/radius/issues/5892
# TODO_LAUNCH: Remove this variable when we opensource the repo - https://github.com/radius-project/radius/issues/5892
DOCKER_REGISTRY: ${{ github.event_name == 'pull_request' && 'radiusdev.azurecr.io' || 'radius.azurecr.io' }}

# GitHub Actor for pushing images to GHCR
GHCR_ACTOR: rad-ci-bot

# Container registry url for GitHub container registry.
CONTAINER_REGISTRY: ${{ github.event_name == 'pull_request' && 'ghcr.io/project-radius/dev' || 'ghcr.io/project-radius/radius' }}
CONTAINER_REGISTRY: ${{ github.event_name == 'pull_request' && 'ghcr.io/radius-project/dev' || 'ghcr.io/radius-project/radius' }}

# Local file path to the release binaries.
RELEASE_PATH: ./release

jobs:
build:
name: Build ${{ matrix.target_os }}_${{ matrix.target_arch }} binaries
runs-on: [self-hosted, 1ES.Pool=1ES-Radius ]
runs-on: ubuntu-latest
env:
GOOS: ${{ matrix.target_os }}
GOARCH: ${{ matrix.target_arch }}
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
with:
name: rad_cli_release
path: ${{ env.RELEASE_PATH }}
# TOOD_LAUNCH: Remove this step when we opensource the repo - https://github.com/project-radius/radius/issues/5892
# TOOD_LAUNCH: Remove this step when we opensource the repo - https://github.com/radius-project/radius/issues/5892
- name: Upload CLI binary
uses: actions/upload-artifact@v3
with:
Expand Down Expand Up @@ -211,10 +211,10 @@ jobs:
# - tag the image with the PR version if the trigger was a PR
# - push the image for pushes to master, or to a tag

# TODO_LAUNCH: Remove 'image' job when we opensource the repo - https://github.com/project-radius/radius/issues/5892
# TODO_LAUNCH: Remove 'image' job when we opensource the repo - https://github.com/radius-project/radius/issues/5892
images:
name: Container image build
runs-on: [self-hosted,1ES.Pool=1ES-Radius ]
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
Expand Down Expand Up @@ -263,7 +263,7 @@ jobs:
# publish_image is building and publishing images to GHCR.
publish_images:
name: Build and publish container images
runs-on: [self-hosted,1ES.Pool=1ES-Radius ]
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
Expand Down Expand Up @@ -312,13 +312,13 @@ jobs:
helm:
name: Helm chart build
needs: ['images', 'publish_images']
runs-on: [self-hosted,1ES.Pool=1ES-Radius ]
runs-on: ubuntu-latest
env:
ARTIFACT_DIR: ./dist/Charts
HELM_PACKAGE_DIR: helm
HELM_CHARTS_DIR: deploy/Chart
OCI_REGISTRY: ghcr.io
OCI_REPOSITORY: ${{ startsWith(github.ref, 'refs/tags/v') && 'project-radius/helm-chart' || 'project-radius/dev/helm-chart' }}
OCI_REPOSITORY: ${{ startsWith(github.ref, 'refs/tags/v') && 'radius-project/helm-chart' || 'radius-project/dev/helm-chart' }}
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -353,7 +353,7 @@ jobs:
publish_release:
name: Publish GitHub Release
needs: [ 'build' ]
runs-on: [self-hosted,1ES.Pool=1ES-Radius ]
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
steps:
- name: Checkout
Expand Down Expand Up @@ -388,11 +388,11 @@ jobs:
--verify-tag
env:
GITHUB_TOKEN: ${{ secrets.GH_RAD_CI_BOT_PAT }}
# TODO_LAUNCH: Remove this job once we opensource - https://github.com/project-radius/radius/issues/5892
# TODO_LAUNCH: Remove this job once we opensource - https://github.com/radius-project/radius/issues/5892
publish:
name: Publish rad CLI binaries
needs: [ 'build' ]
runs-on: [self-hosted,1ES.Pool=1ES-Radius ]
runs-on: ubuntu-latest
if: (github.ref == 'refs/heads/main') || startsWith(github.ref, 'refs/tags/v') # upload on push to main or tag
steps:
- name: Checkout
Expand Down Expand Up @@ -476,7 +476,7 @@ jobs:
name: Delete artifacts
needs: [ 'build', 'publish' ]
if: ${{ always() && !contains(needs.build.result, 'failure') }}
runs-on: [self-hosted,1ES.Pool=1ES-Radius ]
runs-on: ubuntu-latest
steps:
- name: Delete release artifacts
uses: geekyeggo/delete-artifact@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
issue-number: ${{ github.event.pull_request.number }}
body: |
You are editing files which require a docs update. Please ensure you've made the appropriate changes to the docs and submitted a PR.
- Swagger changes require reference edge docs to be updated [here](https://github.com/project-radius/docs/tree/edge/docs/content/reference/resource-schema)
- Swagger changes require reference edge docs to be updated [here](https://github.com/radius-project/docs/tree/edge/docs/content/reference/resource-schema)
- Make sure to create a branch and submit a PR into the edge branch instead of the default latest branch, as the swagger changes will not be available until the next release.
For more information on contributing to docs please visit https://docs.radapp.dev/contributing/docs/.
Loading

0 comments on commit e085341

Please sign in to comment.