-
Notifications
You must be signed in to change notification settings - Fork 82
Replace tibdex/github-app-token with actions/create-github-app-token #357
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
Changes from 4 commits
e52a83c
caa3c06
4a4cae2
53595ba
57fe0a6
7514da8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,15 +15,12 @@ jobs: | |
steps: | ||
- name: Get token | ||
id: get_token | ||
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0 | ||
uses: actions/create-github-app-token@v2 | ||
with: | ||
app_id: ${{ secrets.OBS_AUTOMATION_APP_ID }} | ||
private_key: ${{ secrets.OBS_AUTOMATION_APP_PEM }} | ||
permissions: >- | ||
{ | ||
"organization_projects": "write", | ||
"issues": "read" | ||
} | ||
app-id: ${{ secrets.OBS_AUTOMATION_APP_ID }} | ||
private-key: ${{ secrets.OBS_AUTOMATION_APP_PEM }} | ||
permission-organization-projects: write | ||
permission-issues: read | ||
|
||
- name: Assign issues with milestones to project | ||
uses: elastic/[email protected] | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,27 @@ | ||
/*- | ||
|
||
* #%L | ||
* Java ECS logging | ||
* %% | ||
* Copyright (C) 2019 - 2025 Elastic and contributors | ||
* %% | ||
* Licensed to Elasticsearch B.V. under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch B.V. licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
* #L% | ||
*/ | ||
package co.elastic.logging.log4j2; | ||
|
||
import static co.elastic.logging.log4j2.CustomMdcSerializer.CUSTOM_MDC_SERIALIZER_TEST_KEY; | ||
|
Uh oh!
There was an error while loading. Please reload this page.