0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-07-09 23:35:00 +00:00

Merge remote-tracking branch 'origin/main' into breakdown-vm-code

This commit is contained in:
Pavel Boldyrev 2024-02-14 21:45:18 -05:00
commit de38940dda
No known key found for this signature in database
GPG Key ID: 02A24794ADAC7455
8 changed files with 23 additions and 9 deletions

View File

@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Generate Short Lived OAuth App Token - name: Generate Short Lived OAuth App Token
uses: actions/create-github-app-token@86576b355dd19da0519e0bdb63d8edb5bcf76a25 # v1.7.0 uses: actions/create-github-app-token@f4c6bf6752984b3a29fcc135a5e70eb792c40c6b # v1.8.0
id: app-token id: app-token
with: with:
app-id: "${{ secrets.BOT_APP_ID }}" app-id: "${{ secrets.BOT_APP_ID }}"

View File

@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Generate Short Lived OAuth App Token - name: Generate Short Lived OAuth App Token
uses: actions/create-github-app-token@86576b355dd19da0519e0bdb63d8edb5bcf76a25 # v1.7.0 uses: actions/create-github-app-token@f4c6bf6752984b3a29fcc135a5e70eb792c40c6b # v1.8.0
id: app-token id: app-token
with: with:
app-id: "${{ secrets.BOT_APP_ID }}" app-id: "${{ secrets.BOT_APP_ID }}"

View File

@ -13,7 +13,7 @@ jobs:
contents: write contents: write
steps: steps:
- name: Generate Short Lived OAuth App Token - name: Generate Short Lived OAuth App Token
uses: actions/create-github-app-token@86576b355dd19da0519e0bdb63d8edb5bcf76a25 # v1.7.0 uses: actions/create-github-app-token@f4c6bf6752984b3a29fcc135a5e70eb792c40c6b # v1.8.0
id: app-token id: app-token
with: with:
app-id: "${{ secrets.BOT_APP_ID }}" app-id: "${{ secrets.BOT_APP_ID }}"

View File

@ -12,7 +12,7 @@ jobs:
pull-requests: write pull-requests: write
steps: steps:
- name: Generate Short Lived OAuth App Token - name: Generate Short Lived OAuth App Token
uses: actions/create-github-app-token@86576b355dd19da0519e0bdb63d8edb5bcf76a25 # v1.7.0 uses: actions/create-github-app-token@f4c6bf6752984b3a29fcc135a5e70eb792c40c6b # v1.8.0
id: app-token id: app-token
with: with:
app-id: "${{ secrets.BOT_APP_ID }}" app-id: "${{ secrets.BOT_APP_ID }}"

View File

@ -1,6 +1,4 @@
# v1.51.2 # v1.55.2
run:
deadline: 5m
issues: issues:
new-from-rev: 9101977dc81f64db077b9a1eda2fe401359854c9 new-from-rev: 9101977dc81f64db077b9a1eda2fe401359854c9
# Maximum issues count per one linter. Set to 0 to disable. # Maximum issues count per one linter. Set to 0 to disable.

View File

@ -8,3 +8,20 @@ pull_request_rules:
review: review:
type: APPROVE type: APPROVE
message: ":robot: LGTM! *beep* *boop*" message: ":robot: LGTM! *beep* *boop*"
- name: Automatic approval of renovate's pull requests
conditions:
- author=renovate[bot]
- label=renovate/github-action
- "#approved-reviews-by=0"
actions:
review:
type: APPROVE
- name: Automatic approval of all-contributors's pull requests
conditions:
- author=allcontributors[bot]
- "#approved-reviews-by=0"
actions:
review:
type: APPROVE
merge:
method: squash

View File

@ -24,6 +24,6 @@ resource "proxmox_virtual_environment_download_file" "centos_cloud_image" {
content_type = "iso" content_type = "iso"
datastore_id = "local" datastore_id = "local"
node_name = "pve" node_name = "pve"
url = "https://cloud.centos.org/centos/8-stream/x86_64/images/CentOS-Stream-GenericCloud-8-20231113.0.x86_64.qcow2" url = "https://cloud.centos.org/centos/8-stream/x86_64/images/CentOS-Stream-GenericCloud-8-latest.x86_64.qcow2"
file_name = "centos8.img" file_name = "centos8.img"
} }

View File

@ -25,5 +25,4 @@ resource "proxmox_virtual_environment_download_file" "ubuntu_cloud_image" {
datastore_id = "local" datastore_id = "local"
node_name = "pve" node_name = "pve"
url = "https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-amd64.img" url = "https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-amd64.img"
} }