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

Renames plugin name #365

Merged
merged 1 commit into from
Oct 14, 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
9 changes: 5 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.88</version>
<relativePath />
<relativePath/>
</parent>

<licenses>
Expand All @@ -17,14 +18,14 @@
</licenses>

<artifactId>Office-365-Connector</artifactId>
<name>Office 365 Connector</name>
<name>Office 365 Connector / Power Automate workflows</name>
<version>${revision}${changelist}</version>
<packaging>hpi</packaging>
<description>This plugin sends Job notifications to JenkinsCI Office 365 Connector.</description>
<url>https://github.com/jenkinsci/office-365-connector-plugin</url>

<properties>
<revision>4.22.1</revision>
<revision>5.0.0</revision>
<changelist>-SNAPSHOT</changelist>
<jenkins.version>2.414.3</jenkins.version>

Expand Down
12 changes: 11 additions & 1 deletion src/main/resources/index.jelly
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
<?jelly escape-by-default='true'?>
<div>
Sends jobs status notifications to Microsoft Teams and Outlook (Office 365).
Sends message from Jenkins job to Microsoft Teams using Power Automate workflows (previously <strike>Office 365
connectors</strike>).
This version introduces possibility to user Power Automate.
<b>Office 365 connectors
<a href="https://devblogs.microsoft.com/microsoft365dev/retirement-of-office-365-connectors-within-microsoft-teams/">
are retiring soon.
</a>
</b>
<p style="color:red">Use this new version carefully migrate and test before deploying on production.
New plugin version may not support with old configuration.
</p>
</div>
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form">
<f:section title="Office 365 Connector">
<f:section title="Office 365 Connector / Power Automate workflows">
<f:entry title="URL" field="globalUrl">
<f:textbox/>
</f:entry>
<f:entry title="Name" field="globalName">
<f:textbox/>
</f:entry>
<f:textbox/>
</f:entry>
<f:entry title="Name" field="globalName">
<f:textbox/>
</f:entry>
</f:section>
</j:jelly>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form">
<f:section title="Office 365 Connector">
<j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form">
<f:section title="Office 365 Connector / Power Automate workflows">
<f:entry title="Notification webhooks" field="webhooks">
<f:repeatableProperty field="webhooks" add="Add Webhook">
</f:repeatableProperty>
Expand Down
Loading