Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mask integration_url and bump gh action version #84

Merged
merged 3 commits into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ORG_GITHUB_TOKEN: ${{ secrets.ORG_GITHUB_TOKEN }}
- name: Report Release To OpsLevel
uses: opslevel/report-deploy-github-action@v1.0.0
uses: opslevel/report-deploy-github-action@v2.0.0
with:
integration_url: ${{ secrets.DEPLOY_INTEGRATION_URL }}
service: "report_deploy_github_action"
19 changes: 10 additions & 9 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,15 @@ inputs:
runs:
using: "composite"
steps:
- name: Mask inputs
shell: bash
run: |
set +v
echo ::add-mask::${{ inputs.integration_url }}
set -v
- name: Do it with Docker
if: ${{ inputs.use_docker == 'true' }}
uses: OpsLevel/report-deploy-github-action/with-docker@v1.0.0
uses: OpsLevel/report-deploy-github-action/with-docker@v2.0.0
with:
integration_url: ${{ inputs.integration_url }}
deduplication_id: ${{ inputs.deduplication_id }}
Expand All @@ -60,16 +66,13 @@ runs:
environment: ${{ inputs.environment }}
number: ${{ inputs.number }}
service: ${{ inputs.service }}
- name: Install OpsLevel cli
- name: Install OpsLevel CLI
if: ${{ inputs.use_docker != 'true' }}
shell: bash
run: |
curl -sLS https://raw.githubusercontent.com/OpsLevel/cli/main/install.sh | sudo sh
uses: opslevel/actions/setup-cli@v1
- name: Report Deploy to OpsLevel
if: ${{ inputs.use_docker != 'true' }}
shell: bash
run: |
echo ::add-mask::$INTEGRATION_URL
cat <<EOF > data.yaml
service: "${{ inputs.service }}"
description: "${{ inputs.description }}"
Expand All @@ -81,6 +84,4 @@ runs:
name: "${{ inputs.deployer_name }}"
email: "${{ inputs.deployer_email }}"
EOF
opslevel create deploy -i "${INTEGRATION_URL}" -f .
env:
INTEGRATION_URL: ${{ inputs.integration_url }}
opslevel create deploy -i "${{ inputs.integration_url }}" -f .
Loading