forked from open-telemetry/opentelemetry-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from Sage/feature/EIM-3431-UpdateGithubActions
Feature/eim 3431 update GitHub actions
- Loading branch information
Showing
3 changed files
with
122 additions
and
39 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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,27 @@ | ||
parameters: | ||
- name: skipBuild | ||
type: string | ||
default: "false" | ||
- name: githubConnection | ||
type: string | ||
default: "Sage" | ||
- name: defaultVersionType | ||
type: string | ||
default: "latest" | ||
|
||
jobs: | ||
- job: DownloadOpenTelemetryLayer | ||
displayName: "Download OpenTelemetry Layer" | ||
condition: and(succeeded(), eq('${{ parameters.skipBuild }}', false)) | ||
steps: | ||
- task: DownloadGitHubRelease@0 | ||
inputs: | ||
connection: ${{ parameters.githubConnection }} | ||
userRepository: Sage/opentelemetry-lambda | ||
defaultVersionType: ${{ parameters.defaultVersionType }} | ||
downloadPath: '$(System.ArtifactsDirectory)' | ||
- task: PublishBuildArtifacts@1 | ||
displayName: "Publish to build output" | ||
inputs: | ||
artifactName: "build_output" | ||
PathtoPublish: "$(System.ArtifactsDirectory)" |
This file contains 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,28 @@ | ||
<!--- Provide a general summary of your changes in the Title above --> | ||
<!--- Please delete options that are not relevant. --> | ||
|
||
# Description | ||
<!--- Describe your changes in detail. Please also include relevant motivation and context. --> | ||
|
||
## Types of changes | ||
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> | ||
- [ ] Bug fix (non-breaking change which fixes an issue) | ||
- [ ] New feature (non-breaking change which adds functionality) | ||
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) | ||
- [ ] Refactor (code change that neither fixes a bug nor adds a feature) | ||
- [ ] Hot fix (patch that fixes a bug in production) | ||
|
||
## How has this been tested? (optional) | ||
<!--- Please describe the tests that you ran (automated or manual) to verify your changes.--> | ||
<!--- Provide instructions or any relevant details for your test configuration --> | ||
|
||
## Screenshots (if appropriate): | ||
|
||
## Checklist: | ||
<!--- Go over all the following points, and put an `x` in all the boxes that apply. --> | ||
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> | ||
- [ ] My code follows the code style of this project. | ||
- [ ] I have performed a self-review of my code | ||
- [ ] I have added tests to cover my changes. | ||
- [ ] I ran CI Tests and Unit tests locally prior to submission. | ||
- [ ] I have updated the documentation accordingly to my changes. |